summaryrefslogtreecommitdiff
path: root/GL
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2007-01-05 10:15:09 -0800
committerIan Romanick <idr@us.ibm.com>2007-01-05 10:15:09 -0800
commitdfb2c10413e22afd8d486a982870f874326d5ef4 (patch)
tree6d6cd7dc6c9af230df6b7278e9c2b7a64e5d5b40 /GL
parentf90c3e226b105bf77beb94723fc08bdff14834be (diff)
Add missing #else from previous commits.
Diffstat (limited to 'GL')
-rw-r--r--GL/glx/glxbyteorder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/GL/glx/glxbyteorder.h b/GL/glx/glxbyteorder.h
index 0bcb91fb7..b9d738dba 100644
--- a/GL/glx/glxbyteorder.h
+++ b/GL/glx/glxbyteorder.h
@@ -39,6 +39,7 @@
#include <byteswap.h>
#elif defined(USE_SYS_ENDIAN_H)
#include <sys/endian.h>
+#else
#define bswap_16(value) \
((((value) & 0xff) << 8) | ((value) >> 8))