difftime.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
difftime.c (95B)
---
1 #include <time.h>
2
3 #undef difftime
4
5 double
6 difftime(time_t t1, time_t t2)
7 {
8 return t2 - t1;
9 }