HPGCC3 Documentation 3.0 R003
|
00001 //& *** (c) 2006-2011 The HPGCC3 Team *** 00002 //& Claudio Lapilli 00003 //& Ingo Blank 00004 //& 00005 //& This file is licensed under the terms and conditions of the 00006 //& HPGCC3 license that is included with the source distribution. 00007 //& *** (c) 2006-2011 The HPGCC3 Team *** 00008 00009 // $Id: stdint.h 541 2008-01-27 23:17:51Z ingo $ 00010 00011 #ifndef __STDINT_H 00012 #define __STDINT_H 00013 00014 /* 00015 * Definitions of standard integer types. 00016 */ 00017 00018 typedef unsigned char uint8_t; 00019 typedef char int8_t; 00020 typedef unsigned short uint16_t; 00021 typedef short int16_t; 00022 typedef unsigned int uint32_t; 00023 typedef int int32_t; 00024 #ifdef __GNUC__ 00025 typedef unsigned long long uint64_t; 00026 typedef long long int64_t; 00027 #else 00028 typedef unsigned __int64 uint64_t; 00029 typedef __int64 int64_t; 00030 #endif 00031 00032 #endif // __STDINT_H 00033 00034