Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / sys / inttypes.h
1 /*
2  * This file is in the public domain.
3  * $FreeBSD: src/sys/sys/inttypes.h,v 1.2 1999/08/28 00:51:47 peter Exp $
4  */
5
6 #ifndef _SYS_INTTYPES_H_
7 #define _SYS_INTTYPES_H_
8
9 #include <machine/ansi.h>
10
11 typedef __int8_t        int8_t;
12 typedef __int16_t       int16_t;
13 typedef __int32_t       int32_t;
14 typedef __int64_t       int64_t;
15
16 typedef __uint8_t       uint8_t;
17 typedef __uint16_t      uint16_t;
18 typedef __uint32_t      uint32_t;
19 typedef __uint64_t      uint64_t;
20
21 typedef __intptr_t      intptr_t;
22 typedef __uintptr_t     uintptr_t;
23
24 #endif /* !_SYS_INTTYPES_H_ */