shithub: scc

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