about summary refs log tree commit diff
path: root/absl/base/internal/endian.h
diff options
context:
space:
mode:
authorDaniel Ylitalo <daniel@ylitalo.io>2017-12-13T20·02+0100
committerDerek Mauro <761129+derekmauro@users.noreply.github.com>2017-12-13T20·02-0500
commit5fe41affbaab5b9ad4876a6295c78f21a86d862d (patch)
treed6cb31cf0deb80dc295e6fae0b287d482ac4a947 /absl/base/internal/endian.h
parent04edad3801ec0b1091df9157b879d8f6a50c5036 (diff)
FreeBSD compability (#57)
Diffstat (limited to 'absl/base/internal/endian.h')
-rw-r--r--absl/base/internal/endian.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/absl/base/internal/endian.h b/absl/base/internal/endian.h
index 602129eed207..edc10f10a5aa 100644
--- a/absl/base/internal/endian.h
+++ b/absl/base/internal/endian.h
@@ -22,6 +22,8 @@
 #elif defined(__APPLE__)
 // Mac OS X / Darwin features
 #include <libkern/OSByteOrder.h>
+#elif defined(__FreeBSD__)
+#include <sys/endian.h>
 #elif defined(__GLIBC__)
 #include <byteswap.h>  // IWYU pragma: export
 #endif