diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-11 22:29:53 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-11 22:29:53 +0000 |
commit | 0bec4f557a96e1a40437cf5af20cc78a5eec8a63 (patch) | |
tree | c1e05ec804c43aa5a8f5f21b0ed02d0587d29563 /command_line/CmdLine/Src/MacEmul/Memory.c | |
parent | aec1b8dddc68ecb8288ec6132932e4c7b4bca09f (diff) | |
download | MWCC-0bec4f557a96e1a40437cf5af20cc78a5eec8a63.tar.gz MWCC-0bec4f557a96e1a40437cf5af20cc78a5eec8a63.zip |
getting closer
Diffstat (limited to 'command_line/CmdLine/Src/MacEmul/Memory.c')
-rw-r--r-- | command_line/CmdLine/Src/MacEmul/Memory.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/command_line/CmdLine/Src/MacEmul/Memory.c b/command_line/CmdLine/Src/MacEmul/Memory.c index e201343..e6c42c3 100644 --- a/command_line/CmdLine/Src/MacEmul/Memory.c +++ b/command_line/CmdLine/Src/MacEmul/Memory.c @@ -49,7 +49,7 @@ void OS_DestroyMacHandle(Handle h, OSHandle *ret) { free(h); } -OSErr MemError() { +OSErr MemError(void) { return memError; } @@ -257,10 +257,10 @@ void DebugStr(ConstStringPtr str) { fprintf(stderr, "%*.*s", str[0], str[0], &str[1]); } -struct Zone *HandleZone() { - return 0; +struct Zone *HandleZone(void) { + return NULL; } -struct Zone *ApplicationZone() { - return 0; +struct Zone *ApplicationZone(void) { + return NULL; } |