mirror of
https://github.com/fluencelabs/musl
synced 2025-04-26 07:42:13 +00:00
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);
|
||
|
}
|