Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ AC_CHECK_FUNCS(getopt_long)

AC_CHECK_HEADERS(unistd.h inttypes.h stdint.h endian.h libc.h)
AC_CHECK_HEADERS(windows.h winsock2.h process.h)
AC_CHECK_HEADERS(malloc.h dlfcn.h regex.h sys/cdefs.h sys/socket.h)
AC_CHECK_HEADERS(alloca.h malloc.h dlfcn.h regex.h sys/cdefs.h sys/socket.h)
AC_CHECK_HEADERS(netinet/in.h arpa/inet.h sys/uio.h aio.h)
AC_CHECK_HEADERS(sys/mman.h sys/wait.h sys/resource.h sys/time.h)
AC_CHECK_HEADERS(sys/mman.h sys/wait.h sys/resource.h sys/select.h sys/time.h)
AC_CHECK_HEADERS(io.h mach/task.h)

AC_CHECK_FUNCS(setenv waitpid setrlimit gettimeofday fork kill pipe _pipe)
Expand Down
7 changes: 6 additions & 1 deletion src/zzuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@
#include <errno.h>
#include <signal.h>
#include <libgen.h>
#include <alloca.h>
#if defined HAVE_ALLOCA_H
# include <alloca.h>
#endif
#if defined HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if defined HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
Expand Down