1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
14 lines
264 B
C
14 lines
264 B
C
#ifndef _TYPES_COMPAT_H_
|
|
#define _TYPES_COMPAT_H_
|
|
|
|
#include <stdint.h>
|
|
#include <limits.h>
|
|
|
|
typedef uint8_t u_int8_t;
|
|
typedef uint16_t u_int16_t;
|
|
typedef uint32_t u_int32_t;
|
|
typedef uint64_t u_int64_t;
|
|
|
|
|
|
#endif
|