dbf-halloween2015

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libs/ogg/config_types.h	Sun Nov 01 00:36:56 2015 +0200
     1.3 @@ -0,0 +1,25 @@
     1.4 +#ifndef __CONFIG_TYPES_H__
     1.5 +#define __CONFIG_TYPES_H__
     1.6 +
     1.7 +/* these are filled in by configure */
     1.8 +#define INCLUDE_INTTYPES_H 1
     1.9 +#define INCLUDE_STDINT_H 1
    1.10 +#define INCLUDE_SYS_TYPES_H 1
    1.11 +
    1.12 +#if INCLUDE_INTTYPES_H
    1.13 +#  include <inttypes.h>
    1.14 +#endif
    1.15 +#if INCLUDE_STDINT_H
    1.16 +#  include <stdint.h>
    1.17 +#endif
    1.18 +#if INCLUDE_SYS_TYPES_H
    1.19 +#  include <sys/types.h>
    1.20 +#endif
    1.21 +
    1.22 +typedef int16_t ogg_int16_t;
    1.23 +typedef uint16_t ogg_uint16_t;
    1.24 +typedef int32_t ogg_int32_t;
    1.25 +typedef uint32_t ogg_uint32_t;
    1.26 +typedef int64_t ogg_int64_t;
    1.27 +
    1.28 +#endif