commit | 132774804ebc3b52bbdadf326297718e17e16092 | [log] [tgz] |
---|---|---|
author | Howard Abrams <howard@cs.nps.navy.mil> | Sat Jul 10 13:16:29 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Jul 10 13:16:29 1999 +0000 |
tree | f6d3f7540b6ba6f19fe5ad94f9c7737fbcd22b49 | |
parent | f03c93669b8179c819a4a1350a4095d78fc8db9f [diff] [blame] |
Added checks for sys/errno.h, sys/signal.h and sys/mman.h.
diff --git a/server/thread.c b/server/thread.c index d85a149..5529733 100644 --- a/server/thread.c +++ b/server/thread.c
@@ -4,13 +4,17 @@ * Copyright (C) 1998 Alexandre Julliard */ +#include "config.h" + #include <assert.h> #include <fcntl.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#ifdef HAVE_SYS_MMAN_H #include <sys/mman.h> +#endif #include <sys/types.h> #include <sys/uio.h> #include <unistd.h>