shithub: scc

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