shithub: scc

ref: 2472ad09ad5d993096556543f2c5ce8f786223c1
dir: /src/libc/time/difftime.c/

View raw version
#include <time.h>

#undef difftime

double
difftime(time_t t1, time_t t2)
{
	return t2 - t1;
}