xref: /dragonfly/sys/sys/stdint.h (revision 8b123e35)
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  * Note: since portions of these header files can be included with various
6  * other combinations of defines, we cannot surround the whole header file
7  * with an #ifndef sequence.  Elements are individually protected.
8  */
9 
10 #ifndef _SYS_STDINT_H_
11 #define _SYS_STDINT_H_
12 
13 #include <sys/cdefs.h>
14 #include <machine/stdint.h>
15 
16 #endif	/* SYS_STDINT_H */
17