Merge pull request #93 from zyp/master
[fw/stlink] / example / libs_stm / inc / base / stdint.h
1 #ifndef STDINT_H_INCLUDED
2 # define STDINT_H_INCLUDED
3
4
5 typedef char int8_t;
6 typedef short int16_t;
7 typedef int int32_t;
8 typedef long long int64_t;
9
10 typedef unsigned char uint8_t;
11 typedef unsigned short uint16_t;
12 typedef unsigned int uint32_t;
13 typedef unsigned long long uint64_t;
14
15
16 #endif /* ! STDINT_H_INCLUDED */