diff options
| author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-26 18:49:19 +0000 | 
|---|---|---|
| committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-26 18:49:19 +0000 | 
| commit | 71046cd407789e22e9b14b74affdb12809c76c07 (patch) | |
| tree | 8a36d94c8a18d2fb3220171532184a38d47aa2fc /src | |
| parent | c35e56ae667f1acb907b36eef6af3dcb8b18910e (diff) | |
| download | tinyproxy-71046cd407789e22e9b14b74affdb12809c76c07.tar.gz tinyproxy-71046cd407789e22e9b14b74affdb12809c76c07.zip  | |
Removed the "pthread" related includes.
Diffstat (limited to '')
| -rw-r--r-- | src/common.h | 12 | 
1 files changed, 4 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index e81ed7e..1489c51 100644 --- a/src/common.h +++ b/src/common.h @@ -1,4 +1,4 @@ -/* $Id: common.h,v 1.1 2002-05-23 04:37:54 rjkaes Exp $ +/* $Id: common.h,v 1.2 2002-05-26 18:49:19 rjkaes Exp $   *   * This file groups all the headers required throughout the tinyproxy   * system.  All this information use to be in the "tinyproxy.h" header, @@ -112,13 +112,6 @@  #ifdef HAVE_NETDB_H  #  include	<netdb.h>  #endif -#ifdef HAVE_PTHREAD_H -#  include	<pthread.h> -#else -#  ifdef HAVE_PTHREADS_H -#    include 	<pthreads.h> -#  endif -#endif  #ifdef HAVE_PWD_H  #  include     	<pwd.h>  #endif @@ -162,6 +155,9 @@  #ifdef HAVE_WCTYPE_H  #  include	<wctype.h>  #endif +#ifdef HAVE_SYS_MMAN_H +#  include      <sys/mman.h> +#endif  /*   * If MSG_NOSIGNAL is not defined, define it to be zero so that it doesn't  | 
