fix %n specifier, again. this time it was storing the wrong value.
[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 }