]> git.sur5r.net Git - cc65/commitdiff
Added _systime
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 12 Nov 2002 22:35:40 +0000 (22:35 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 12 Nov 2002 22:35:40 +0000 (22:35 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1508 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/time.h

index ba0c2c91a0d5faf62700c4f28ccba5cda1ea87be..535b2d49c8d9b90b02c5543106204d861651e120 100644 (file)
@@ -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);