/***************************************************************************** * pce * *****************************************************************************/ /***************************************************************************** * File name: src/lib/stdint/stdint.h * * Created: 2005-07-11 by Hampa Hug * * Copyright: (C) 2005-2024 Hampa Hug * *****************************************************************************/ /***************************************************************************** * This program is free software. You can redistribute it and / or modify it * * under the terms of the GNU General Public License version 2 as published * * by the Free Software Foundation. * * * * This program is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY, without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * * Public License for more details. * *****************************************************************************/ #ifndef PCE_LIB_STDINT_H #define PCE_LIB_STDINT_H 1 #include #ifdef HAVE_INTTYPES_H #include #else typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned long uint32_t; typedef unsigned long long uint64_t; #endif #endif