dbf-halloween2015
annotate libs/ogg/config_types.h @ 4:4316c0c879e9
fixed RUN script for macosx
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 01 Nov 2015 06:18:18 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@1 | 1 #ifndef __CONFIG_TYPES_H__ |
nuclear@1 | 2 #define __CONFIG_TYPES_H__ |
nuclear@1 | 3 |
nuclear@1 | 4 /* these are filled in by configure */ |
nuclear@1 | 5 #define INCLUDE_INTTYPES_H 1 |
nuclear@1 | 6 #define INCLUDE_STDINT_H 1 |
nuclear@1 | 7 #define INCLUDE_SYS_TYPES_H 1 |
nuclear@1 | 8 |
nuclear@1 | 9 #if INCLUDE_INTTYPES_H |
nuclear@1 | 10 # include <inttypes.h> |
nuclear@1 | 11 #endif |
nuclear@1 | 12 #if INCLUDE_STDINT_H |
nuclear@1 | 13 # include <stdint.h> |
nuclear@1 | 14 #endif |
nuclear@1 | 15 #if INCLUDE_SYS_TYPES_H |
nuclear@1 | 16 # include <sys/types.h> |
nuclear@1 | 17 #endif |
nuclear@1 | 18 |
nuclear@1 | 19 typedef int16_t ogg_int16_t; |
nuclear@1 | 20 typedef uint16_t ogg_uint16_t; |
nuclear@1 | 21 typedef int32_t ogg_int32_t; |
nuclear@1 | 22 typedef uint32_t ogg_uint32_t; |
nuclear@1 | 23 typedef int64_t ogg_int64_t; |
nuclear@1 | 24 |
nuclear@1 | 25 #endif |