From 0bec4f557a96e1a40437cf5af20cc78a5eec8a63 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 11 Jan 2023 22:29:53 +0000 Subject: getting closer --- command_line/CmdLine/Src/OSLib/Posix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'command_line/CmdLine/Src/OSLib/Posix.c') diff --git a/command_line/CmdLine/Src/OSLib/Posix.c b/command_line/CmdLine/Src/OSLib/Posix.c index 1f13dff..f42c0be 100644 --- a/command_line/CmdLine/Src/OSLib/Posix.c +++ b/command_line/CmdLine/Src/OSLib/Posix.c @@ -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; } -- cgit v1.2.3