shithub: scc

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