shithub: scc

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