fix the type of CLOCKS_PER_SEC to match new clock_t type
[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 }