diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-29 13:56:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-29 13:56:45 +0000 |
commit | 4d17d6876e4b2f08380812c4ec113073b0a14639 (patch) | |
tree | 7283f07518be4c7250d72ac89c38729563ffa642 /lib/strequal.c | |
parent | 0d6236f7e10468f75d09796ba9640c9054ab1f04 (diff) | |
download | curl-4d17d6876e4b2f08380812c4ec113073b0a14639.tar.gz |
Dan Fandrich's cleanup patch to make pedantic compiler options cause less
warnings. Minor edits by me.
Diffstat (limited to 'lib/strequal.c')
-rw-r--r-- | lib/strequal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/strequal.c b/lib/strequal.c index 4349b500a..37a68876e 100644 --- a/lib/strequal.c +++ b/lib/strequal.c @@ -26,6 +26,8 @@ #include <string.h> #include <ctype.h> +#include "strequal.h" + #ifdef HAVE_STRCASECMP /* this is for "-ansi -Wall -pedantic" to stop complaining! */ extern int (strcasecmp)(const char *s1, const char *s2); |