From 2cd37d74e49710b221979b34bd39060fec8447b7 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 12 Nov 2002 22:35:40 +0000 Subject: [PATCH] Added _systime git-svn-id: svn://svn.cc65.org/cc65/trunk@1508 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/time.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/include/time.h b/include/time.h index ba0c2c91a..535b2d49c 100644 --- a/include/time.h +++ b/include/time.h @@ -90,7 +90,14 @@ unsigned _clocks_per_sec (void); -/* Function prototypes */ +time_t _systime (void); +/* Similar to time(), but: + * - Is not ISO C + * - Does not take the additional pointer + * - Does not set errno when returning -1 + */ + +/* ISO C function prototypes */ char* __fastcall__ asctime (const struct tm* timep); clock_t clock (void); char* __fastcall__ ctime (const time_t* timep);