|
|
|
@ -8,18 +8,29 @@
|
|
|
|
|
#define __P(p) p
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define LITTLE_ENDIAN 1234
|
|
|
|
|
#define BIG_ENDIAN 4321
|
|
|
|
|
|
|
|
|
|
#define __LITTLE_ENDIAN 1234
|
|
|
|
|
#define __BIG_ENDIAN 4321
|
|
|
|
|
#include <alloca.h>
|
|
|
|
|
#include <strings.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
|
|
#ifndef BYTE_ORDER
|
|
|
|
|
#define LITTLE_ENDIAN 1234
|
|
|
|
|
#define BIG_ENDIAN 4321
|
|
|
|
|
|
|
|
|
|
#ifdef __sparc__
|
|
|
|
|
#define BYTE_ORDER BIG_ENDIAN
|
|
|
|
|
#define __BYTE_ORDER BIG_ENDIAN
|
|
|
|
|
#define BYTE_ORDER BIG_ENDIAN
|
|
|
|
|
#else
|
|
|
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
|
|
|
#define ____BYTE_ORDER BIG_ENDIAN
|
|
|
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef __BYTE_ORDER
|
|
|
|
|
#define __LITTLE_ENDIAN LITTLE_ENDIAN
|
|
|
|
|
#define __BIG_ENDIAN BIG_ENDIAN
|
|
|
|
|
#define __BYTE_ORDER BYTE_ORDER
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef __BIT_TYPES_DEFINED__
|
|
|
|
@ -29,6 +40,9 @@ typedef unsigned short u_int16_t;
|
|
|
|
|
typedef unsigned int u_int32_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
char* strsep(char** str, const char* delims);
|
|
|
|
|
uint64_t
|
|
|
|
|
strtoq(const char *nptr, char **endptr, int base);
|
|
|
|
|
int setenv(const char *name, const char *value, int overwrite);
|
|
|
|
|
|
|
|
|
|
int unsetenv(const char *name);
|
|
|
|
|
#endif
|
|
|
|
|