mirror of
https://github.com/reactos/reactos.git
synced 2025-07-10 14:24:12 +00:00
10 lines
208 B
C
10 lines
208 B
C
#pragma once
|
|
|
|
typedef signed char int8_t;
|
|
typedef unsigned char u_int8_t;
|
|
typedef short int16_t;
|
|
typedef unsigned short u_int16_t;
|
|
typedef int int32_t;
|
|
typedef unsigned int u_int32_t;
|
|
|
|
typedef char *caddr_t;
|