mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 05:02:02 +00:00
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.
This commit is contained in:
7
src/string/strverscmp.c
Normal file
7
src/string/strverscmp.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <string.h>
|
||||
|
||||
int strverscmp(const char *l, const char *r)
|
||||
{
|
||||
/* FIXME */
|
||||
return strcmp(l, r);
|
||||
}
|
Reference in New Issue
Block a user