mirror of https://git.musl-libc.org/git/musl
Browse Source
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.rs-1.0
2 changed files with 8 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
#include <string.h> |
|||
|
|||
int strverscmp(const char *l, const char *r) |
|||
{ |
|||
/* FIXME */ |
|||
return strcmp(l, r); |
|||
} |
|||
Loading…
Reference in new issue