summaryrefslogtreecommitdiffstats
path: root/isys/stubs.h
blob: b7da85226753459caf22e74f6c3670e9bad00717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* we use gzlib when linked against dietlibc, but otherwise, we should use
   zlib.  it would make more sense to do the defines in the other direction, 
   but that causes symbol wackiness because both gunzip_open and gzip_open in
   gzlib are gzopen from zlib
*/

#ifndef ISYS_STUB
#define ISYS_STUB

#ifndef GZLIB
#include <zlib.h>

#define gunzip_open(x) gzopen(x, "r")
#define gunzip_close gzclose
#define gunzip_read gzread
#define gzip_write gzwrite

#else
#include "gzlib/gzlib.h"

#endif

#endif