shithub: scc

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