1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-11-21 20:59:33 +00:00
Files
amiga-tz/difftime.c
Arthur David Olson b24e5adb35 created
SCCS-file: difftime.c
SCCS-SID: 1.1
2012-07-18 03:01:52 -04:00

19 lines
265 B
C

#ifndef lint
#ifndef NOID
static char elsieid[] = "%W%";
#endif /* !defined NOID */
#endif /* !defined lint */
/*LINTLIBRARY*/
#include "time.h"
#include "nonstd.h"
double
difftime(time1, time0)
const time_t time1;
const time_t time0;
{
return time1 - time0;
}