shithub: scc

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