diff options
author | Ash Wolf <ninji@wuffs.org> | 2022-10-13 17:56:43 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2022-10-13 17:56:43 +0100 |
commit | b8df05413a4e8b299de07b915cddce73a3bb16e3 (patch) | |
tree | 74260aa4137676a7dc40fab0d07526d39a1de688 /command_line/CmdLine/Src/OSLib | |
parent | 59a724bd4cc7a543686c633572510e6763b34d39 (diff) | |
download | MWCC-b8df05413a4e8b299de07b915cddce73a3bb16e3.tar.gz MWCC-b8df05413a4e8b299de07b915cddce73a3bb16e3.zip |
finish CLMain.c
Diffstat (limited to 'command_line/CmdLine/Src/OSLib')
-rw-r--r-- | command_line/CmdLine/Src/OSLib/Posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command_line/CmdLine/Src/OSLib/Posix.c b/command_line/CmdLine/Src/OSLib/Posix.c index dc22651..e3f8a03 100644 --- a/command_line/CmdLine/Src/OSLib/Posix.c +++ b/command_line/CmdLine/Src/OSLib/Posix.c @@ -44,7 +44,7 @@ const char *OS_GetErrText(int err) { } } -int OS_InitProgram(int *pArgc, const char ***pArgv) { +int OS_InitProgram(int *pArgc, char ***pArgv) { return 0; } |