mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 15:22:15 +00:00
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.
8 lines
105 B
C
8 lines
105 B
C
#include <string.h>
|
|
|
|
int strverscmp(const char *l, const char *r)
|
|
{
|
|
/* FIXME */
|
|
return strcmp(l, r);
|
|
}
|