crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[musl] / src / time / difftime.c
1 #include <time.h>
2
3 double difftime(time_t t1, time_t t0)
4 {
5         return t1-t0;
6 }