mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 22:34:48 +01:00
ef7e9d6b9b
This completes 2/3 of #8857 and is courtesy of nielx.
12 lines
314 B
C
12 lines
314 B
C
#ifndef _HAIKU_BUILD_COMPATIBILITY_DARWIN_ENDIAN
|
|
#define _HAIKU_BUILD_COMPATIBILITY_DARWIN_ENDIAN
|
|
|
|
#include <machine/endian.h>
|
|
|
|
#define __LITTLE_ENDIAN LITTLE_ENDIAN
|
|
#define __BIG_ENDIAN BIG_ENDIAN
|
|
#define __PDP_ENDIAN PDP_ENDIAN
|
|
#define __BYTE_ORDER BYTE_ORDER
|
|
|
|
#endif // _HAIKU_BUILD_COMPATIBILITY_DARWIN_ENDIAN
|