summaryrefslogtreecommitdiff
path: root/include/string.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-09-11 22:45:56 -0400
committerRich Felker <dalias@aerifal.cx>2011-09-11 22:45:56 -0400
commita6540174be064806b6eb4dc6abff48a9b4facfdd (patch)
treea4f1973d1daf9f8c575507ca405de87c19085fc6 /include/string.h
parentd4045a1683d402dd4e53b3ae388d8794d7238c7e (diff)
downloadmusl-a6540174be064806b6eb4dc6abff48a9b4facfdd.tar.gz
add dummied strverscmp (obnoxious GNU function)
programs that use this tend to horribly botch international text support, so it's questionable whether we want to support it even in the long term... for now, it's just a dummy that calls strcmp.
Diffstat (limited to 'include/string.h')
-rw-r--r--include/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h
index f95a15c9..a5b5a510 100644
--- a/include/string.h
+++ b/include/string.h
@@ -69,6 +69,7 @@ size_t strlcpy (char *, const char *, size_t);
#endif
#ifdef _GNU_SOURCE
+int strverscmp (const char *, const char *);
int strcasecmp (const char *, const char *);
int strncasecmp (const char *, const char *, size_t);
char *strchrnul(const char *, int);