Add '#define __LITTLE_ENDIAN__ 1' which was missing for macOS port

This commit is contained in:
Christian Jullien 2022-01-11 07:06:09 +01:00
parent d33b189427
commit 4e0e9b8f21

View File

@ -113,6 +113,7 @@
/* emulate APPLE-GCC to make libc's headerfiles compile: */
#define __GNUC__ 4 /* darwin emits warning on GCC<4 */
#define __APPLE_CC__ 1 /* for <TargetConditionals.h> */
#define __LITTLE_ENDIAN__ 1
#define _DONT_USE_CTYPE_INLINE_ 1
/* avoids usage of GCC/clang specific builtins in libc-headerfiles: */
#define __FINITE_MATH_ONLY__ 1