comparison src/alac/demux.h @ 330:74df3bd6f472 trunk

[svn] - portability fixes: + use old inttypes.h if stdint.h is not available + use NULL instead of 0 when dealing with pointers
author nenolod
date Mon, 04 Dec 2006 13:50:33 -0800
parents 86ce11c6b8c3
children
comparison
equal deleted inserted replaced
329:c457e253275a 330:74df3bd6f472
1 #ifndef DEMUX_H 1 #ifndef DEMUX_H
2 #define DEMUX_H 2 #define DEMUX_H
3 3
4 #include <stdint.h> 4 #include "config.h"
5
6 #if HAVE_STDINT_H
7 # include <stdint.h>
8 #else
9 # if HAVE_INTTYPES_H
10 # include <inttypes.h>
11 # endif
12 #endif
13
5 #include "decomp.h" 14 #include "decomp.h"
6 #include "stream.h" 15 #include "stream.h"
7 16
8 typedef uint32_t fourcc_t; 17 typedef uint32_t fourcc_t;
9 18