Files
Upsilon/liba/include/stdint.h
Romain Goyet 803ffda5bc Liba
2015-05-31 13:24:35 +02:00

12 lines
212 B
C

#ifndef LIBA_STDINT_H
#define LIBA_STDINT_H
typedef unsigned char uint8_t;
typedef unsigned int uint16_t;
typedef unsigned long uint32_t;
typedef unsigned long long uint64_t;
typedef long long int64_t;
#endif