shithub: scc

ref: 681e67865a4f1ef968ea8dc981ac62279abef8ad
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;
}