mirror of https://github.com/madler/zlib.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
467 B
17 lines
467 B
14 years ago
|
/* zlibdefs.h -- compile-time definitions for the zlib compression library
|
||
|
* Copyright (C) 1995-2006 Jean-loup Gailly.
|
||
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
||
|
*/
|
||
|
|
||
|
#cmakedefine HAVE_UNISTD_H
|
||
|
#ifdef HAVE_UNISTD_H
|
||
|
#include <sys/types.h> /* for off_t */
|
||
|
#include <unistd.h> /* for SEEK_* and off_t */
|
||
|
#ifdef VMS
|
||
|
# include <unixio.h> /* for off_t */
|
||
|
#endif
|
||
|
#ifndef z_off_t
|
||
|
# define z_off_t off_t
|
||
|
#endif
|
||
|
#endif
|