ref: 34f94d8f686d27d00fcca2c4bc596d339fd3f5b0
dir: /posix/platform.h/
#define _XOPEN_SOURCE 700 #include <assert.h> #include <ctype.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <float.h> #include <inttypes.h> #include <limits.h> #include <locale.h> #include <math.h> #include <setjmp.h> #include <stdarg.h> #include <stdio.h> #include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <strings.h> #include <sys/stat.h> #include <sys/time.h> #include <time.h> #include <unistd.h> #include <wctype.h> #include <wchar.h> #ifndef __SIZEOF_POINTER__ #error pointer size unknown #elif __SIZEOF_POINTER__ == 8 #define BITS64 1 #define ULONG64 1 #endif #define nil NULL #define USED(x) ((void)(x)) #define nelem(x) (int)(sizeof(x)/sizeof((x)[0])) #define PATHSEP '/' #define PATHSEPSTRING "/" #define PATHLISTSEP ':' #define PATHLISTSEPSTRING ":" #define ISPATHSEP(c) ((c) == '/') #ifndef BYTE_ORDER #define LITTLE_ENDIAN __LITTLE_ENDIAN #define BIG_ENDIAN __BIG_ENDIAN #define BYTE_ORDER __BYTE_ORDER #endif #include "mp.h" #include "utf.h"