Explorar o código

* rtl/atari: naming: gemdos_free is actually gemdos_mfree. no functional change.

Karoly Balogh %!s(int64=3) %!d(string=hai) anos
pai
achega
b30a1bf447
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      rtl/atari/gemdos.inc
  2. 1 1
      rtl/atari/sysheap.inc

+ 1 - 1
rtl/atari/gemdos.inc

@@ -152,7 +152,7 @@ function gemdos_fattrib(filename: pchar; wflag: smallint; attrib: smallint): sma
 
 function gemdos_dgetpath(path: pchar; driveno: smallint): smallint; syscall 1 71;
 function gemdos_malloc(number: dword): pointer; syscall 1 72;
-function gemdos_free(block: pointer): dword; syscall 1 73;
+function gemdos_mfree(block: pointer): dword; syscall 1 73;
 function gemdos_mshrink(zero: word; block: pointer; newsiz: longint): longint; syscall 1 74;
 function gemdos_pexec(mode: word; name: pchar; cmdline: pchar; env: pchar): longint; syscall 1 75;
 procedure gemdos_pterm(returncode: smallint); syscall 1 76;

+ 1 - 1
rtl/atari/sysheap.inc

@@ -27,5 +27,5 @@ end;
 
 procedure SysOSFree(p: pointer; size: ptruint);
 begin
-  gemdos_free(p);
+  gemdos_mfree(p);
 end;