shithub: scc

ref: 439629f3f58c21dd056721107e4dadb3b6e0482f
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);
}