]>
git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/stdint.h
8e444b6d85d764d57938ac8c4da06504086321e3
5 #ifndef _BITSIZE_STDINT_H
6 #define _BITSIZE_STDINT_H
8 typedef signed char int8_t;
9 typedef short int int16_t;
11 typedef long long int int64_t;
13 typedef unsigned char uint8_t;
14 typedef unsigned short int uint16_t;
15 typedef unsigned int uint32_t;
16 typedef unsigned long long int uint64_t;
18 typedef int int_fast16_t;
19 typedef int int_fast32_t;
21 typedef unsigned int uint_fast16_t;
22 typedef unsigned int uint_fast32_t;
25 typedef unsigned int uintptr_t;
27 #define __INT64_C(c) c ## LL
28 #define __UINT64_C(c) c ## ULL
30 #define __PRI64_RANK "ll"
31 #define __PRIFAST_RANK ""
32 #define __PRIPTR_RANK ""
34 #endif /* _BITSIZE_STDINT_H */