summaryrefslogtreecommitdiff
path: root/include/remote/endian.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/remote/endian.h')
-rw-r--r--include/remote/endian.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/remote/endian.h b/include/remote/endian.h
new file mode 100644
index 00000000..6aa6466d
--- /dev/null
+++ b/include/remote/endian.h
@@ -0,0 +1,12 @@
+// This is an incomplete & imprecice implementation of the
+// standard file by the same name
+
+#ifndef ENDIAN_H
+#define ENDIAN_H
+
+#define __LITTLE_ENDIAN 1234
+#define __BIG_ENDIAN 4321
+
+#define __BYTE_ORDER __LITTLE_ENDIAN
+
+#endif // ENDIAN_H