fix wrong return value from wmemmove on forward copies
[musl] / src / string / strverscmp.c
1 #include <string.h>
2
3 int strverscmp(const char *l, const char *r)
4 {
5         /* FIXME */
6         return strcmp(l, r);
7 }