shithub: scc

ref: 8e517c601fa233750a08f2ce8f8656557486d76a
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;
}