Add bionic support to endian.h am: 0b3ea84b83
am: c7689501a3

Change-Id: I73c25c7533d74989953f0c6da768fa5e9702e4db
diff --git a/util/base/endian.h b/util/base/endian.h
index f319f65..75f8bf7 100644
--- a/util/base/endian.h
+++ b/util/base/endian.h
@@ -40,7 +40,7 @@
 
 // The following guarantees declaration of the byte swap functions, and
 // defines __BYTE_ORDER for MSVC
-#if defined(__GLIBC__) || defined(__CYGWIN__)
+#if defined(__GLIBC__) || defined(__BIONIC__) || defined(__CYGWIN__)
 #include <byteswap.h>  // IWYU pragma: export
 // The following section defines the byte swap functions for OS X / iOS,
 // which does not ship with byteswap.h.