shithub: scc

ref: c1b4b8354a76cc8c9aa13757e8b3db8d1b5a7c39
dir: /src/libc/time/difftime.c/

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

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