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/Envir | |
parent | 59a724bd4cc7a543686c633572510e6763b34d39 (diff) | |
download | MWCC-b8df05413a4e8b299de07b915cddce73a3bb16e3.tar.gz MWCC-b8df05413a4e8b299de07b915cddce73a3bb16e3.zip |
finish CLMain.c
Diffstat (limited to '')
-rw-r--r-- | command_line/CmdLine/Src/Envir/CLIO.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/command_line/CmdLine/Src/Envir/CLIO.c b/command_line/CmdLine/Src/Envir/CLIO.c index ac58506..e832de5 100644 --- a/command_line/CmdLine/Src/Envir/CLIO.c +++ b/command_line/CmdLine/Src/Envir/CLIO.c @@ -149,15 +149,15 @@ void CLPrintType(SInt16 msgtype, ...) { } -void CLPrint(SInt16 msgtype, ...) { +void CLPrint(const char *format, ...) { } -void CLPrintWarning(SInt16 msgtype, ...) { +void CLPrintWarning(const char *format, ...) { } -void CLPrintErr(SInt16 msgtype, ...) { +void CLPrintErr(const char *format, ...) { } |