aboutsummaryrefslogtreecommitdiff
path: root/pd/src/d_osc.c
diff options
context:
space:
mode:
Diffstat (limited to 'pd/src/d_osc.c')
-rw-r--r--pd/src/d_osc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pd/src/d_osc.c b/pd/src/d_osc.c
index 0f2eb3e9..b0becdba 100644
--- a/pd/src/d_osc.c
+++ b/pd/src/d_osc.c
@@ -35,11 +35,11 @@
#endif
#if defined(__unix__) || defined(__APPLE__)
-#if !defined(__BYTE_ORDER) || !defined(__LITTLE_ENDIAN)
+#if !defined(BYTE_ORDER) || !defined(LITTLE_ENDIAN)
#error No byte order defined
#endif
-#if __BYTE_ORDER == __LITTLE_ENDIAN
+#if BYTE_ORDER == LITTLE_ENDIAN
#define HIOFFSET 1
#define LOWOFFSET 0
#else