diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-09-11 23:50:07 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-09-11 23:50:07 +0000 |
commit | c0ff35dd220ffa95234deaabf08b5e1e1c77b465 (patch) | |
tree | 731df84126f60bddbcfe4c7e103d5e9eed36445a /src | |
parent | 4f4f91f76ff33c65f2f0da2ce17bf8f52907dcf9 (diff) | |
download | tinyproxy-c0ff35dd220ffa95234deaabf08b5e1e1c77b465.tar.gz tinyproxy-c0ff35dd220ffa95234deaabf08b5e1e1c77b465.zip |
Moved back to the <config.h> for autoconf defines.
Diffstat (limited to '')
-rw-r--r-- | src/regexp.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/regexp.h b/src/regexp.h index 1c40332..fd119de 100644 --- a/src/regexp.h +++ b/src/regexp.h @@ -1,4 +1,4 @@ -/* $Id: regexp.h,v 1.1.1.1 2000-02-16 17:32:24 sdyoung Exp $ +/* $Id: regexp.h,v 1.2 2000-09-11 23:50:07 rjkaes Exp $ * * We need this little header to help distinguish whether to use the REGEX * library installed in the system, or to include our own version (the GNU @@ -17,8 +17,17 @@ * General Public License for more details. */ +#ifndef _TINYPROXY_REGEXP_H_ +#define _TINYPROXY_REGEXP_H_ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #ifdef USE_GNU_REGEX # include "gnuregex.h" #else # include <regex.h> #endif + +#endif |