Give ps access to a process's thread structure.
[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  * $DragonFly: src/sys/sys/Attic/inttypes.h,v 1.2 2003/06/17 04:28:58 dillon Exp $
5  */
6
7 #ifndef _SYS_INTTYPES_H_
8 #define _SYS_INTTYPES_H_
9
10 #include <machine/ansi.h>
11
12 typedef __int8_t        int8_t;
13 typedef __int16_t       int16_t;
14 typedef __int32_t       int32_t;
15 typedef __int64_t       int64_t;
16
17 typedef __uint8_t       uint8_t;
18 typedef __uint16_t      uint16_t;
19 typedef __uint32_t      uint32_t;
20 typedef __uint64_t      uint64_t;
21
22 typedef __intptr_t      intptr_t;
23 typedef __uintptr_t     uintptr_t;
24
25 #endif /* !_SYS_INTTYPES_H_ */