shithub: scc

ref: 351881313c73f9276a102d1508ca59e3cc8ad7b1
dir: /lib/c/difftime.c/

View raw version
#include <time.h>
#undef difftime

double
difftime(time_t t1, time_t t2)
{
	return (double) (t1 - t2);
}