summaryrefslogtreecommitdiffhomepage
path: root/contrib/ogg/include/ogg/config_types.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ogg/include/ogg/config_types.h.in')
-rw-r--r--contrib/ogg/include/ogg/config_types.h.in25
1 files changed, 0 insertions, 25 deletions
diff --git a/contrib/ogg/include/ogg/config_types.h.in b/contrib/ogg/include/ogg/config_types.h.in
deleted file mode 100644
index 750e29d..0000000
--- a/contrib/ogg/include/ogg/config_types.h.in
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __CONFIG_TYPES_H__
-#define __CONFIG_TYPES_H__
-
-/* these are filled in by configure */
-#define INCLUDE_INTTYPES_H @INCLUDE_INTTYPES_H@
-#define INCLUDE_STDINT_H @INCLUDE_STDINT_H@
-#define INCLUDE_SYS_TYPES_H @INCLUDE_SYS_TYPES_H@
-
-#if INCLUDE_INTTYPES_H
-# include <inttypes.h>
-#endif
-#if INCLUDE_STDINT_H
-# include <stdint.h>
-#endif
-#if INCLUDE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
-
-typedef @SIZE16@ ogg_int16_t;
-typedef @USIZE16@ ogg_uint16_t;
-typedef @SIZE32@ ogg_int32_t;
-typedef @USIZE32@ ogg_uint32_t;
-typedef @SIZE64@ ogg_int64_t;
-
-#endif