Merge commit 'fdd0a700930bdd04bc8827ef88dc5039ecc5b6ce'
[osmocom-bb.git] / src / target / firmware / include / stdint.h
1 #ifndef _STDINT_H
2 #define _STDINT_H
3
4 /* some older toolchains (like gnuarm-3.x) don't provide a C99
5    compliant stdint.h yet, so we define our own here */
6
7 typedef signed char int8_t;
8 typedef unsigned char uint8_t;
9
10 typedef signed short int16_t;
11 typedef unsigned short uint16_t;
12
13 typedef signed long int32_t;
14 typedef unsigned long uint32_t;
15
16 #endif