1 /* LICENSE: no restrictions at all, but USE ON YOUR OWN RISK ONLY. 2 * SPDX-License-Identifier: LicenseRef-Wrobel 3 * Copyright 2004-2008 Angela Wrobel <http://www.wrobelnet.de/>, et. al. 4 */ 5 #ifndef __STDINT_H 6 #define __STDINT_H 7 #include <sys/types.h> 8 typedef unsigned char uint8_t; 9 typedef unsigned short uint16_t; 10 typedef unsigned long uint32_t; 11 12 typedef signed char int8_t; 13 typedef signed short int16_t; 14 typedef signed long int32_t; 15 #endif 16 17 18