[HAL]
[reactos.git] / reactos / base / services / dhcp / include / stdint.h
1 #pragma once
2
3 typedef signed char int8_t;
4 typedef unsigned char u_int8_t;
5 typedef short int16_t;
6 typedef unsigned short u_int16_t;
7 typedef int int32_t;
8 typedef unsigned int u_int32_t;
9
10 typedef char *caddr_t;