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/MacEmul/Memory.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'command_line/CmdLine/Src/MacEmul/Memory.c') 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; } -- cgit v1.2.3