summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2011-12-04 21:07:12 +0000
committerRafaël Carré <rafael.carre@gmail.com>2011-12-04 21:07:12 +0000
commit4811b516a35ab6d391cc738c17b9aa8a26505fbe (patch)
tree7c38c96c339efe15b92d666766283d0e29fd8c20 /firmware
parent09f6556e223cc9ac851304117bf1dfaf9b5582f3 (diff)
Don't define str(n,i)cmp(i): we don't use those
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31148 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/libc/include/string.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/firmware/libc/include/string.h b/firmware/libc/include/string.h
index f4914eadff..9346611aee 100644
--- a/firmware/libc/include/string.h
+++ b/firmware/libc/include/string.h
@@ -61,20 +61,6 @@ const char *_EXFUN(strsignal, (int __signo));
int _EXFUN(strtosigno, (const char *__name));
#endif
-/* These function names are used on Windows and perhaps other systems. */
-#ifndef strcmpi
-#define strcmpi strcasecmp
-#endif
-#ifndef stricmp
-#define stricmp strcasecmp
-#endif
-#ifndef strncmpi
-#define strncmpi strncasecmp
-#endif
-#ifndef strnicmp
-#define strnicmp strncasecmp
-#endif
-
#endif /* ! __STRICT_ANSI__ */
#ifdef __cplusplus