crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[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 }