mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2026-09-19 12:54:40 +00:00
created
SCCS-file: difftime.c SCCS-SID: 1.1
This commit is contained in:
committed by
Paul Eggert
parent
b728439bdc
commit
b24e5adb35
+18
@@ -0,0 +1,18 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user