Add missing #else from previous commits.
This commit is contained in:
parent
f90c3e226b
commit
dfb2c10413
|
@ -39,6 +39,7 @@
|
||||||
#include <byteswap.h>
|
#include <byteswap.h>
|
||||||
#elif defined(USE_SYS_ENDIAN_H)
|
#elif defined(USE_SYS_ENDIAN_H)
|
||||||
#include <sys/endian.h>
|
#include <sys/endian.h>
|
||||||
|
#else
|
||||||
#define bswap_16(value) \
|
#define bswap_16(value) \
|
||||||
((((value) & 0xff) << 8) | ((value) >> 8))
|
((((value) & 0xff) << 8) | ((value) >> 8))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue