diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-06-14 17:23:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-06-14 17:23:51 +0000 |
commit | ce7e3586da4f1cb8c3771754737d4db8d047a736 (patch) | |
tree | 5683ab5f586fd555cb3394b16c767fbeb8531b06 | |
parent | 94ec5ff44a78921a11803d33b3065d2d5322cf6d (diff) |
Added #include <string.h>
-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 87dbc5d86..cf3db959e 100644 --- a/lib/strequal.c +++ b/lib/strequal.c @@ -38,6 +38,8 @@ * ------------------------------------------------------------ ****************************************************************************/ +#include <string.h> + #include "setup.h" int strequal(const char *first, const char *second) |