diff options
author | Ian Romanick <idr@us.ibm.com> | 2007-01-05 10:15:09 -0800 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2007-01-05 10:15:09 -0800 |
commit | dfb2c10413e22afd8d486a982870f874326d5ef4 (patch) | |
tree | 6d6cd7dc6c9af230df6b7278e9c2b7a64e5d5b40 /GL | |
parent | f90c3e226b105bf77beb94723fc08bdff14834be (diff) |
Add missing #else from previous commits.
Diffstat (limited to 'GL')
-rw-r--r-- | GL/glx/glxbyteorder.h | 1 |
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)) |