changeset 140:84f2542340b9 libavutil

clean up inttypes.h and int_fastxx_t types detection
author mru
date Tue, 14 Nov 2006 04:02:58 +0000
parents 8a35b87bf4a1
children c27dddbfe901
files common.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/common.h	Tue Nov 14 03:37:44 2006 +0000
+++ b/common.h	Tue Nov 14 04:02:58 2006 +0000
@@ -84,7 +84,7 @@
 #endif
 #endif
 
-#ifndef EMULATE_INTTYPES
+#ifdef HAVE_INTTYPES
 #   include <inttypes.h>
 #else
     typedef signed char  int8_t;
@@ -95,7 +95,7 @@
     typedef unsigned int   uint32_t;
     typedef signed long long   int64_t;
     typedef unsigned long long uint64_t;
-#endif /* EMULATE_INTTYPES */
+#endif /* HAVE_INTTYPES */
 
 #ifndef PRId64
 #define PRId64 "lld"
@@ -157,7 +157,7 @@
 #define UINT64_MAX uint64_t_C(0xFFFFFFFFFFFFFFFF)
 #endif
 
-#ifdef EMULATE_FAST_INT
+#ifndef HAVE_FAST_INT
 typedef signed char int_fast8_t;
 typedef signed int  int_fast16_t;
 typedef signed int  int_fast32_t;