00001 //& **************************************************************************** 00002 //& 00003 //& Written by Ingo Blank, August 2005 00004 //& 00005 //& Copyright (C) 2004,2005 Ingo Blank, The HP-GCC Development Team 00006 //& 00007 //& **************************************************************************** 00008 //& 00009 //& 00010 //& This file is part of HP-GCC. 00011 //& 00012 //& HP-GCC is free software; you can redistribute it and/or modify 00013 //& it under the terms of the GNU General Public License as published by 00014 //& the Free Software Foundation; either version 2, or (at your option) 00015 //& any later version. 00016 //& 00017 //& HP-GCC is distributed in the hope that it will be useful, 00018 //& but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 //& MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 //& GNU General Public License for more details. 00021 //& 00022 //& You should have received a copy of the GNU General Public License 00023 //& along with HP-GCC; see the file COPYING. 00024 //& 00025 //& As a special exception, you may use this file as part of a free software 00026 //& library without restriction. Specifically, if other files instantiate 00027 //& templates or use macros or inline functions from this file, or you compile 00028 //& this file and link it with other files to produce an executable, this 00029 //& file does not by itself cause the resulting executable to be covered by 00030 //& the GNU General Public License. This exception does not however 00031 //& invalidate any other reasons why the executable file might be covered by 00032 //& the GNU General Public License. 00033 //& 00034 //& **************************************************************************** 00035 00036 // $Header: $ 00037 00038 #ifndef __STDINT_H 00039 #define __STDINT_H 00040 00041 /* 00042 * Definitions of standard integer types. 00043 */ 00044 00045 typedef unsigned char uint8_t; 00046 typedef char int8_t; 00047 typedef unsigned short uint16_t; 00048 typedef short int16_t; 00049 typedef unsigned int uint32_t; 00050 typedef int int32_t; 00051 typedef unsigned long long uint64_t; 00052 typedef long long int64_t; 00053 00054 #endif 00055