shithub: scc

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