1 2 3 4 5 6 7
#ifndef STDINT_H #define STDINT_H typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; #endif