math: use 0x1p-120f and 0x1p120f for tiny and huge values
[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 }