mirror of
https://review.haiku-os.org/haiku
synced 2025-02-16 02:29:09 +01:00
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28305 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
391 B
C
18 lines
391 B
C
/*
|
|
* Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _FSSH_COMPATIBILITY_H
|
|
#define _FSSH_COMPATIBILITY_H
|
|
|
|
#if (defined(__BEOS__) || defined(__HAIKU__))
|
|
# ifndef HAIKU_HOST_PLATFORM_HAIKU
|
|
# include <HaikuBuildCompatibility.h>
|
|
# endif
|
|
#else
|
|
# include <BeOSBuildCompatibility.h>
|
|
#endif
|
|
|
|
#endif // _FSSH_COMPATIBILITY_H
|
|
|