Relicence all source and header files included in LGPL code
[lttng-tools.git] / src / common / compat / endian.h
index 42c7fab31af9e53d67ac9eacf82bcc897f79e0b5..752d8a7316a09631318f5940d22ffe009c923303 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 2011 David Goulet <dgoulet@efficios.com>
  *
- * SPDX-License-Identifier: GPL-2.0-only
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
  */
 
@@ -10,6 +10,7 @@
 
 #if defined(__linux__) || defined(__CYGWIN__)
 #include <endian.h>
+#include <byteswap.h>
 
 /*
  * htobe/betoh are not defined for glibc <2.9, so add them
 #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>
This page took 0.024892 seconds and 4 git commands to generate.