Changeset 1728
- Timestamp:
- Feb 1, 2007, 5:08:33 PM (16 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/configure.ac
r1727 r1728 28 28 AC_SUBST(DLL_LDFLAGS) 29 29 30 AC_CHECK_HEADERS(windows.h winsock2.h io.h inttypes.h stdint.h getopt.h libc.h malloc.h dlfcn.h regex.h sys/socket.h sys/uio.h aio.h sys/mman.h sys/wait.h sys/resource.h sys/time.h)30 AC_CHECK_HEADERS(windows.h winsock2.h io.h unistd.h inttypes.h stdint.h getopt.h libc.h malloc.h dlfcn.h regex.h sys/socket.h sys/uio.h aio.h sys/mman.h sys/wait.h sys/resource.h sys/time.h) 31 31 32 32 AC_CHECK_FUNCS(setenv waitpid setrlimit gettimeofday fork kill pipe _pipe) -
zzuf/trunk/src/debug.c
r1718 r1728 28 28 #endif 29 29 #include <stdio.h> 30 #include <unistd.h> 30 #if defined HAVE_UNISTD_H 31 # include <unistd.h> 32 #endif 31 33 #include <errno.h> 32 34 #include <stdarg.h> -
zzuf/trunk/src/lib-fd.c
r1718 r1728 46 46 # include <sys/uio.h> 47 47 #endif 48 #include <unistd.h> 48 #if defined HAVE_UNISTD_H 49 # include <unistd.h> 50 #endif 49 51 #include <fcntl.h> 50 52 #include <stdarg.h> -
zzuf/trunk/src/lib-mem.c
r1716 r1728 41 41 # include <malloc.h> 42 42 #endif 43 #include <unistd.h> 43 #if defined HAVE_UNISTD_H 44 # include <unistd.h> 45 #endif 44 46 #if defined HAVE_SYS_MMAN_H 45 47 # include <sys/mman.h> -
zzuf/trunk/src/lib-stream.c
r1724 r1728 30 30 #include <stdio.h> 31 31 #include <sys/types.h> 32 #if defined HAVE___SREFILL 32 #if defined HAVE___SREFILL && defined HAVE_UNISTD_H 33 33 # include <unistd.h> /* Needed for __srefill’s lseek() call */ 34 34 #endif -
zzuf/trunk/src/libzzuf.c
r1718 r1728 30 30 #include <stdio.h> 31 31 #include <sys/types.h> 32 #include <unistd.h> 32 #if defined HAVE_UNISTD_H 33 # include <unistd.h> 34 #endif 33 35 #include <stdlib.h> 34 36 #include <string.h> -
zzuf/trunk/src/zzuf.c
r1727 r1728 29 29 #include <stdio.h> 30 30 #include <stdlib.h> 31 #include <unistd.h> 31 #if defined HAVE_UNISTD_H 32 # include <unistd.h> 33 #endif 32 34 #if defined HAVE_REGEX_H 33 35 # include <regex.h> -
zzuf/trunk/test/zzcat.c
r1725 r1728 20 20 #include <sys/stat.h> 21 21 #include <fcntl.h> 22 #include <unistd.h> 22 #if defined HAVE_UNISTD_H 23 # include <unistd.h> 24 #endif 23 25 #include <stdlib.h> 24 26 #include <stdint.h>
Note: See TracChangeset
for help on using the changeset viewer.