dbf-halloween2015

view libs/ogg/config_types.h @ 1:c3f5c32cb210

barfed all the libraries in the source tree to make porting easier
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:36:56 +0200
parents
children
line source
1 #ifndef __CONFIG_TYPES_H__
2 #define __CONFIG_TYPES_H__
4 /* these are filled in by configure */
5 #define INCLUDE_INTTYPES_H 1
6 #define INCLUDE_STDINT_H 1
7 #define INCLUDE_SYS_TYPES_H 1
9 #if INCLUDE_INTTYPES_H
10 # include <inttypes.h>
11 #endif
12 #if INCLUDE_STDINT_H
13 # include <stdint.h>
14 #endif
15 #if INCLUDE_SYS_TYPES_H
16 # include <sys/types.h>
17 #endif
19 typedef int16_t ogg_int16_t;
20 typedef uint16_t ogg_uint16_t;
21 typedef int32_t ogg_int32_t;
22 typedef uint32_t ogg_uint32_t;
23 typedef int64_t ogg_int64_t;
25 #endif