From e12fcb08a14de1f5738e0162bba50cdbf87dee47 Mon Sep 17 00:00:00 2001 From: pixel Date: Thu, 5 Jul 2007 18:05:43 +0000 Subject: First import... --- inttypes.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 inttypes.h (limited to 'inttypes.h') diff --git a/inttypes.h b/inttypes.h new file mode 100644 index 0000000..09944ee --- /dev/null +++ b/inttypes.h @@ -0,0 +1,14 @@ +#ifndef __INTTYPES_H__ +#define __INTTYPES_H__ + +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long long uint64_t; + +typedef signed char int8_t; +typedef signed short int16_t; +typedef signed int int32_t; +typedef signed long long int64_t; + +#endif -- cgit v1.2.3