From 9c551a9398aeff9b2177d8f382e01c562f1d3a34 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 2 Sep 2004 04:45:03 +0000 Subject: [PATCH] remove check for config.h and assume everyone has inttypes.h (C99); special workaround for MSVC still exists --- include/FLAC/ordinals.h | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/include/FLAC/ordinals.h b/include/FLAC/ordinals.h index 27f81018..77ec7608 100644 --- a/include/FLAC/ordinals.h +++ b/include/FLAC/ordinals.h @@ -32,22 +32,8 @@ #ifndef FLAC__ORDINALS_H #define FLAC__ORDINALS_H -#ifdef HAVE_CONFIG_H -#include -#endif - -#ifdef HAVE_INTTYPES_H +#ifndef _MSC_VER #include -#elif defined(HAVE_U_INT) -#ifdef HAVE_SYS_TYPES_H -#include -#endif -#define uint8_t u_int8_t -#define uint16_t u_int16_t -#define uint32_t u_int32_t -#define uint64_t u_int64_t -#elif !defined(_MSC_VER) -#error Unable to find fixed-size data types #endif typedef signed char FLAC__int8;