1/*
2 * bits32/stdint.h
3 */
4
5#ifndef _BITSIZE_STDINT_H
6#define _BITSIZE_STDINT_H
7
8typedef signed char		int8_t;
9typedef short int		int16_t;
10typedef int			int32_t;
11
12typedef unsigned char		uint8_t;
13typedef unsigned short int	uint16_t;
14typedef unsigned int		uint32_t;
15
16#if __SIZEOF_POINTER__ == 4
17#include <bitsize32/stdint.h>
18#elif __SIZEOF_POINTER__ == 8
19#include <bitsize64/stdint.h>
20#else
21#error "Unable to build for to-be-defined architecture type"
22#endif
23#endif				/* _BITSIZE_STDINT_H */
24