naev 0.11.5
ncompat.h
1/*
2 * See Licensing and Copyright notice in naev.h
3 */
4#pragma once
5
6/* Standard specific. */
12#if (defined(__unix__) || defined(__unix) || __MACOSX__)
13#define HAS_UNIX 1
14#else
15#define HAS_UNIX 0
16#endif
23#if HAS_UNIX
24#define HAS_POSIX 1
25#else
26#define HAS_POSIX 0
27#endif