getting closer

This commit is contained in:
Ash Wolf
2023-01-11 22:29:53 +00:00
parent aec1b8dddc
commit 0bec4f557a
133 changed files with 10146 additions and 3285 deletions

View File

@@ -48,7 +48,7 @@ int OS_InitProgram(int *pArgc, char ***pArgv) {
return 0;
}
int OS_TermProgram() {
int OS_TermProgram(void) {
return 0;
}
@@ -767,7 +767,7 @@ int OS_CloseDir(OSOpenedDir *ref) {
return 0;
}
UInt32 OS_GetMilliseconds() {
UInt32 OS_GetMilliseconds(void) {
struct tms tms;
return times(&tms) * 1000 / CLOCKS_PER_SEC;
}