aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-23 14:46:12 -0400
committerDrew DeVault <sir@cmpwn.com>2017-06-23 14:46:18 -0400
commit8a18cf456aac6fee666ccb4e7df0a9eb6c059756 (patch)
tree4598ef7a4268327fc4c5a7323479467c812d9e82 /include
parent5a2796266f6f88464396a9cd255dd9d0dedba749 (diff)
Remove endian.h
Fuck big endian systems anyway
Diffstat (limited to 'include')
-rw-r--r--include/endian.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/endian.h b/include/endian.h
deleted file mode 100644
index 0e9b6101..00000000
--- a/include/endian.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef _WLR_ENDIAN_H
-#define _WLR_ENDIAN_H
-
-// https://stackoverflow.com/a/4240257
-
-#define little_endian() (((union { unsigned x; unsigned char c; }){1}).c)
-
-#endif