summaryrefslogtreecommitdiff
path: root/src/utilfuns/unixstr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilfuns/unixstr.cpp')
-rw-r--r--src/utilfuns/unixstr.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utilfuns/unixstr.cpp b/src/utilfuns/unixstr.cpp
index 7a975a2..bbb0ab7 100644
--- a/src/utilfuns/unixstr.cpp
+++ b/src/utilfuns/unixstr.cpp
@@ -1,7 +1,10 @@
// Include only if your UNIX compiler does not include stricmp but does include strcasecmp
#include <unixstr.h>
+#include <string.h>
+SWORD_NAMESPACE_START
int stricmp(const char *s1, const char *s2) {
return strcasecmp(s1, s2);
}
+SWORD_NAMESPACE_END