index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
time
/
difftime.c
blob: e7b567c12bbd348b90689f230b2ad4835706f6f6 (
plain
)
1
2
3
4
5
6
#include <time.h> double difftime(time_t time1, time_t time0) { return time1 - time0; }