]> git.sur5r.net Git - cc65/blobdiff - libsrc/geos-common/system/gettime.c
Adjusted comments to match actual prototypes.
[cc65] / libsrc / geos-common / system / gettime.c
index d695787c3282cf4ffe3075dd5fbe8b790f622422..947a6a4f4e6c0a0943f96b5df8141aa402c10b9d 100644 (file)
@@ -25,7 +25,7 @@ clock_t clock(void)
     return mktime(&currentTime);
 }
 
-int clock_gettime(clockid_t, struct timespec *tp)
+int __fastcall__ clock_gettime(clockid_t, struct timespec *tp)
 {
     tp->tv_sec = clock();
     tp->tv_nsec = 0;