aboutsummaryrefslogtreecommitdiff
path: root/xdr.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2016-05-24 15:42:15 -0400
committerPaul Selkirk <paul@psgd.org>2016-05-24 15:43:13 -0400
commit1fe3c1370d668afd68b9c3b6d0e9480bf3700a7e (patch)
treeabddf1e91d75ec7339ac45ed803df301e4068cbf /xdr.c
parent9f4389f372576c377a070e18ca402482de9cdf21 (diff)
Move htonl to hal_internal.h
Diffstat (limited to 'xdr.c')
-rw-r--r--xdr.c20
1 files changed, 1 insertions, 19 deletions
diff --git a/xdr.c b/xdr.c
index fa12311..6266d99 100644
--- a/xdr.c
+++ b/xdr.c
@@ -36,26 +36,8 @@
#include <stdint.h>
#include <string.h> /* memcpy, memset */
-#ifndef STM32F4XX
-#include <arpa/inet.h> /* htonl/ntohl */
-#else
-/* htonl is not available in arm-none-eabi headers or libc */
-#ifdef __ARMEL__ /* little endian */
-static inline uint32_t htonl(uint32_t w)
-{
- return
- ((w & 0x000000ff) << 24) +
- ((w & 0x0000ff00) << 8) +
- ((w & 0x00ff0000) >> 8) +
- ((w & 0xff000000) >> 24);
-}
-#else
-#define htonl(x) (x)
-#endif
-#define ntohl htonl
-#endif
-
#include "hal.h"
+#include "hal_internal.h"
#include "xdr_internal.h"
/* encode/decode_int. This covers int, unsigned int, enum, and bool types,