shithub: scc

ref: 190def5cfee4412054ed0c9ffadb0ba7f7ac721e
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;
}