shithub: scc

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