summaryrefslogtreecommitdiffstats
path: root/util/system/defaults.h
diff options
context:
space:
mode:
authorsomov <[email protected]>2022-02-10 16:45:49 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:45:49 +0300
commit7489e4682331202b9c7d863c0898eb83d7b12c2b (patch)
tree9142afc54d335ea52910662635b898e79e192e49 /util/system/defaults.h
parenta5950576e397b1909261050b8c7da16db58f10b1 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/system/defaults.h')
-rw-r--r--util/system/defaults.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/system/defaults.h b/util/system/defaults.h
index e889b71fce7..dcd7abea38e 100644
--- a/util/system/defaults.h
+++ b/util/system/defaults.h
@@ -19,16 +19,16 @@
#include <sys/param.h>
#endif
-#if defined(BSD) || defined(_android_)
-
+#if defined(BSD) || defined(_android_)
+
#if defined(BSD)
#include <machine/endian.h>
#endif
-
+
#if defined(_android_)
#include <endian.h>
#endif
-
+
#if (BYTE_ORDER == LITTLE_ENDIAN)
#define _little_endian_
#elif (BYTE_ORDER == BIG_ENDIAN)
@@ -36,7 +36,7 @@
#else
#error unknown endian not supported
#endif
-
+
#elif (defined(_sun_) && !defined(__i386__)) || defined(_hpux_) || defined(WHATEVER_THAT_HAS_BIG_ENDIAN)
#define _big_endian_
#else