summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-03-21 11:52:31 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-03-21 11:52:31 -0400
commitef0aef16961508075249a6206dc0e9a9ac27d81c (patch)
treecc98d97f828319dfd8979490c678750336feae47 /src
parent54490a29006529f7ceb4dc0514a075f9f4175621 (diff)
downloadbfs-ef0aef16961508075249a6206dc0e9a9ac27d81c.tar.xz
bit: Check __BYTE_ORDER__ for the native endian
__ORDER_NATIVE_ENDIAN__ is not a thing.
Diffstat (limited to 'src')
-rw-r--r--src/bit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bit.h b/src/bit.h
index c469305..69df21e 100644
--- a/src/bit.h
+++ b/src/bit.h
@@ -167,8 +167,8 @@
#ifdef __STDC_ENDIAN_NATIVE__
# define ENDIAN_NATIVE __STDC_ENDIAN_NATIVE__
-#elif defined(__ORDER_NATIVE_ENDIAN__)
-# define ENDIAN_NATIVE __ORDER_NATIVE_ENDIAN__
+#elif defined(__BYTE_ORDER__)
+# define ENDIAN_NATIVE __BYTE_ORDER__
#else
# define ENDIAN_NATIVE 0
#endif