From a6540174be064806b6eb4dc6abff48a9b4facfdd Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 11 Sep 2011 22:45:56 -0400 Subject: 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. --- src/string/strverscmp.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/string/strverscmp.c (limited to 'src') diff --git a/src/string/strverscmp.c b/src/string/strverscmp.c new file mode 100644 index 00000000..70549678 --- /dev/null +++ b/src/string/strverscmp.c @@ -0,0 +1,7 @@ +#include + +int strverscmp(const char *l, const char *r) +{ + /* FIXME */ + return strcmp(l, r); +} -- cgit v1.2.1