summaryrefslogtreecommitdiff
path: root/fmacros.h
diff options
context:
space:
mode:
authorJerry Jacobs <jerry.jacobs@xor-gate.org>2016-04-17 20:23:42 +0000
committerJerry Jacobs <jerry.jacobs@xor-gate.org>2016-04-17 20:23:42 +0000
commit9317a74ae5524d68c62fc7cabdb37a1b5e9a8ae1 (patch)
treed3034ad23bdf247290a37a2f7617fb5f302d8748 /fmacros.h
parent1b8ed38843319e17c54021a3b2a9b496159ebdcb (diff)
fmacros.h: Fix warning when compiled with -Wundef
Diffstat (limited to 'fmacros.h')
-rw-r--r--fmacros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fmacros.h b/fmacros.h
index 19d7b21..82ff08d 100644
--- a/fmacros.h
+++ b/fmacros.h
@@ -14,7 +14,7 @@
#define _XOPEN_SOURCE
#endif
-#if __APPLE__ && __MACH__
+#if defined(__APPLE__) && defined(__MACH__)
#define _OSX
#endif