Adjusted comments to match actual prototypes.

This commit is contained in:
Oliver Schmidt
2018-11-06 11:13:23 +01:00
parent f5534a5432
commit 40f42e977f
21 changed files with 21 additions and 21 deletions

View 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;