shithub: scc

ref: fb8dbbcf81b73f635d9269048a6a1e09c029c1ed
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;
}