1/* zlibdefs.h -- compile-time definitions for the zlib compression library 2 * Copyright (C) 1995-2006 Jean-loup Gailly. 3 * For conditions of distribution and use, see copyright notice in zlib.h 4 */ 5 6#include <sys/types.h> /* for off_t */ 7#include <unistd.h> /* for SEEK_* and off_t */ 8#ifdef VMS 9# include <unixio.h> /* for off_t */ 10#endif 11#ifndef z_off_t 12# define z_off_t off_t 13#endif 14