port: fix compat/endian.h on FreeBSD
[lttng-tools.git] / src / common / compat / endian.h
index 42c7fab31af9e53d67ac9eacf82bcc897f79e0b5..d808b40e4e42e829b8383c8f120b0cefbe2b06e8 100644 (file)
@@ -10,6 +10,7 @@
 
 #if defined(__linux__) || defined(__CYGWIN__)
 #include <endian.h>
 
 #if defined(__linux__) || defined(__CYGWIN__)
 #include <endian.h>
+#include <byteswap.h>
 
 /*
  * htobe/betoh are not defined for glibc <2.9, so add them
 
 /*
  * htobe/betoh are not defined for glibc <2.9, so add them
 #endif /* __USE_BSD */
 
 #elif defined(__FreeBSD__)
 #endif /* __USE_BSD */
 
 #elif defined(__FreeBSD__)
-#include <machine/endian.h>
+#include <sys/endian.h>
+
+#define bswap_16(x)    bswap16(x)
+#define bswap_32(x)    bswap32(x)
+#define bswap_64(x)    bswap64(x)
 
 #elif defined(__sun__)
 #include <sys/byteorder.h>
 
 #elif defined(__sun__)
 #include <sys/byteorder.h>
This page took 0.023035 seconds and 4 git commands to generate.