shithub: scc

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