1// Type definitions from csmith's csmith_minimal.h included in csmith.h .
2// Since other header contents are not needed we put them in here
3// so the other original header is not needed anymore.
4
5#define int8_t signed char
6#define uint8_t unsigned char
7
8#define int16_t short
9#define uint16_t unsigned short
10
11#define int32_t int
12#define uint32_t unsigned
13
14#define int64_t long long
15#define uint64_t unsigned long long
16