summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/corestr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/corestr.h')
-rw-r--r--src/lib/util/corestr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/util/corestr.h b/src/lib/util/corestr.h
index dad4880b268..e9750b5f85f 100644
--- a/src/lib/util/corestr.h
+++ b/src/lib/util/corestr.h
@@ -26,11 +26,11 @@ int core_stricmp(const char *s1, const char *s2);
/* this macro prevents people from using stricmp directly */
#undef stricmp
-#define stricmp !MUST_USE_CORE_STRICMP_INSTEAD!
+#define stricmp MUST_USE_CORE_STRICMP_INSTEAD
/* this macro prevents people from using strcasecmp directly */
#undef strcasecmp
-#define strcasecmp !MUST_USE_CORE_STRICMP_INSTEAD!
+#define strcasecmp MUST_USE_CORE_STRICMP_INSTEAD
/* since strnicmp is not part of the standard, we use this instead */
@@ -38,11 +38,11 @@ int core_strnicmp(const char *s1, const char *s2, size_t n);
/* this macro prevents people from using strnicmp directly */
#undef strnicmp
-#define strnicmp !MUST_USE_CORE_STRNICMP_INSTEAD!
+#define strnicmp MUST_USE_CORE_STRNICMP_INSTEAD
/* this macro prevents people from using strncasecmp directly */
#undef strncasecmp
-#define strncasecmp !MUST_USE_CORE_STRNICMP_INSTEAD!
+#define strncasecmp MUST_USE_CORE_STRNICMP_INSTEAD
/* since strdup is not part of the standard, we use this instead - free with osd_free() */
@@ -50,7 +50,7 @@ char *core_strdup(const char *str);
/* this macro prevents people from using strdup directly */
#undef strdup
-#define strdup !MUST_USE_CORE_STRDUP_INSTEAD!
+#define strdup MUST_USE_CORE_STRDUP_INSTEAD
/* additional string compare helper (up to 16 characters at the moment) */