shithub: scc

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