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.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/utilfuns/unixstr.cpp b/src/utilfuns/unixstr.cpp
deleted file mode 100644
index bbb0ab7..0000000
--- a/src/utilfuns/unixstr.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-// 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