diff options
author | Jerry Jacobs <jerry.jacobs@xor-gate.org> | 2016-04-17 20:23:42 +0000 |
---|---|---|
committer | Jerry Jacobs <jerry.jacobs@xor-gate.org> | 2016-04-17 20:23:42 +0000 |
commit | 9317a74ae5524d68c62fc7cabdb37a1b5e9a8ae1 (patch) | |
tree | d3034ad23bdf247290a37a2f7617fb5f302d8748 | |
parent | 1b8ed38843319e17c54021a3b2a9b496159ebdcb (diff) |
fmacros.h: Fix warning when compiled with -Wundef
-rw-r--r-- | fmacros.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ #define _XOPEN_SOURCE #endif -#if __APPLE__ && __MACH__ +#if defined(__APPLE__) && defined(__MACH__) #define _OSX #endif |