summaryrefslogtreecommitdiff
path: root/src/libc/stdint.h
blob: e0f35b66578c1ed61844126eb8c3210187e97bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STDINT_H
#define STDINT_H

#if defined( __PCC__ ) || defined( __TINYC__ )
// TODO: no stdint.h in pcc-libs/pcc or tcc, mock one, but this one is
// most likely very incorrect
typedef unsigned int uint32_t;
typedef signed int int32_t;
typedef unsigned short uint16_t;
typedef signed short int16_t;
typedef unsigned char uint8_t;
typedef signed char int8_t;
#endif

#endif // STDINT_H