summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/gen/difftime.c
blob: 97ac3cee913f61492525d1dfb029d834bb3a3747 (plain)
1
2
3
4
5
6
7
8
9
#include <time.h>

/* Difference in seconds between two calendar times */

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