diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-09-14 16:41:20 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-09-14 16:41:20 +0000 |
commit | d0b36a6673db0dad4b0a70fbdd68d3c2e5fed6e0 (patch) | |
tree | 1a490c02f4cbd8bf1f761d1a99b5903e86f0fa1f /src | |
parent | a5fbf4ea4b8366ba02f19e314f3e2abed4cf38b9 (diff) | |
download | tinyproxy-d0b36a6673db0dad4b0a70fbdd68d3c2e5fed6e0.tar.gz tinyproxy-d0b36a6673db0dad4b0a70fbdd68d3c2e5fed6e0.zip |
Need to do a check for the <stdint.h> header since it's not a standard
header available on all systems.
Diffstat (limited to '')
-rw-r--r-- | src/tinyproxy.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h index 0f9a0d8..5ca4f18 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.h,v 1.4 2000-09-12 00:03:53 rjkaes Exp $ +/* $Id: tinyproxy.h,v 1.5 2000-09-14 16:41:20 rjkaes Exp $ * * See 'tinyproxy.c' for a detailed description. * @@ -42,7 +42,9 @@ #ifdef HAVE_PTHREAD_H # include <pthread.h> #endif -#include <stdint.h> +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> |