From dfb2c10413e22afd8d486a982870f874326d5ef4 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Fri, 5 Jan 2007 10:15:09 -0800 Subject: [PATCH] Add missing #else from previous commits. --- GL/glx/glxbyteorder.h | 1 + 1 file changed, 1 insertion(+) 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 #elif defined(USE_SYS_ENDIAN_H) #include +#else #define bswap_16(value) \ ((((value) & 0xff) << 8) | ((value) >> 8))