00001 /* zlibdefs.h -- compile-time definitions for the zlib compression library 00002 * Copyright (C) 1995-2006 Jean-loup Gailly. 00003 * For conditions of distribution and use, see copyright notice in zlib.h 00004 */ 00005 00006 #include <sys/types.h> /* for off_t */ 00007 #include <unistd.h> /* for SEEK_* and off_t */ 00008 #ifdef VMS 00009 # include <unixio.h> /* for off_t */ 00010 #endif 00011 #ifndef z_off_t 00012 # define z_off_t off_t 00013 #endif
1.5.9