haiku/src/tools/fs_shell/compatibility.h
Ingo Weinhold bc3955fea5 Preparations for removing __BEOS__ from the compiler defines.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28305 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-10-23 21:46:26 +00:00

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