summaryrefslogtreecommitdiff
path: root/apps/codecs/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/lib')
-rw-r--r--apps/codecs/lib/codeclib.c5
-rw-r--r--apps/codecs/lib/codeclib.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c
index 125c466..7f822f4 100644
--- a/apps/codecs/lib/codeclib.c
+++ b/apps/codecs/lib/codeclib.c
@@ -104,11 +104,6 @@ int strcmp(const char *s1, const char *s2)
return(ci->strcmp(s1,s2));
}
-int strncasecmp(const char *s1, const char *s2, size_t n)
-{
- return(ci->strncasecmp(s1,s2,n));
-}
-
void *memcpy(void *dest, const void *src, size_t n)
{
return(ci->memcpy(dest,src,n));
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index 366d30e..296c8cd 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -47,7 +47,6 @@ size_t strlen(const char *s);
char *strcpy(char *dest, const char *src);
char *strcat(char *dest, const char *src);
int strcmp(const char *, const char *);
-int strcasecmp(const char *, const char *);
void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *));