1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-12-09 06:55:44 +00:00
Files
amiga-tz/difftime.c

18 lines
248 B
C
Raw Normal View History

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