Avoid a warning about deprecated assertions

This commit is contained in:
2018-06-12 13:48:00 -04:00
parent 44c3defa4c
commit 42be3dcff5

View File

@@ -95,7 +95,7 @@
#include <endian.h>
#if defined(BYTE_ORDER) /* POSIX proposal */
#define BYTEORDER BYTE_ORDER
#elif #defined(__BYTE_ORDER) /* older systems? */
#elif defined(__BYTE_ORDER) /* older systems? */
#define BYTEORDER __BYTE_ORDER
#endif
#elif HAVE_SYS_ENDIAN_H /* FreeBSD has a sys/endian.h */