fix typo in wordexp.h (note that the function is still unimplemented)
[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 }