]> git.sur5r.net Git - cc65/blobdiff - asminc/time.inc
Fixed some mistakes (mostly in the documentation).
[cc65] / asminc / time.inc
index 16858471d10811c81b8deb9b9bf5ea43274208f6..6064b4ba3606aeb7a6816ad0b7a1c6254f5e6045 100644 (file)
 
 
 ;------------------------------------------------------------------------------
-; Exported functions
+; Struct timespec - must match the struct defined in time.h
 
-.global         __systime
-.global         _mktime
+.struct timespec
+        tv_sec      .dword
+        tv_nsec     .dword
+.endstruct
 
 
+;------------------------------------------------------------------------------
+; Exported functions
 
+.global         _clock_getres
+.global         _clock_gettime
+.global         _clock_settime
+.global         _localtime
+.global         _mktime