1/*
2 * bits32/stdint.h
3 */
4
5
6typedef long long int		int64_t;
7
8typedef unsigned long long int	uint64_t;
9
10typedef int			int_fast16_t;
11typedef int			int_fast32_t;
12
13typedef unsigned int		uint_fast16_t;
14typedef unsigned int		uint_fast32_t;
15
16typedef int			intptr_t;
17typedef unsigned int		uintptr_t;
18
19#define __INT64_C(c)   c ## LL
20#define __UINT64_C(c)  c ## ULL
21
22#define __PRI64_RANK   "ll"
23#define __PRIFAST_RANK ""
24#define __PRIPTR_RANK  ""
25