aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rs232-write.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rs232-write.c')
-rw-r--r--examples/rs232-write.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/rs232-write.c b/examples/rs232-write.c
index 370bd12..11498f3 100644
--- a/examples/rs232-write.c
+++ b/examples/rs232-write.c
@@ -9,6 +9,7 @@
#include <osmocom/core/msgb.h>
#include <osmocom/core/logging.h>
#include <osmocom/core/application.h>
+#include <osmocom/core/endian.h>
#include <osmocom/netif/rs232.h>
@@ -110,13 +111,13 @@ static void ubx_checksum(struct msgb *msg, uint8_t *ck)
}
}
-# if __BYTE_ORDER == __LITTLE_ENDIAN
+# if OSMO_IS_LITTLE_ENDIAN
# define utohl(x) (x)
# define utohs(x) (x)
# define htoul(x) (x)
# define htous(x) (x)
# else
-# if __BYTE_ORDER == __BIG_ENDIAN
+# if OSMO_IS_BIG_ENDIAN
# define utohl(x) __bswap_32 (x)
# define utohs(x) __bswap_16 (x)
# define htoul(x) __bswap_32 (x)