Explorar el Código

* no heap for embedded targets by default

git-svn-id: trunk@13294 -
florian hace 16 años
padre
commit
0806434647
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      rtl/embedded/sysheap.inc

+ 1 - 2
rtl/embedded/sysheap.inc

@@ -20,12 +20,11 @@
 
 function SysOSAlloc(size: ptruint): pointer;
 begin
-  result := pointer($02000000);
+  result:=nil; // pointer($02000000);
 end;
 
 { $define HAS_SYSOSFREE}
 
 procedure SysOSFree(p: pointer; size: ptruint);
 begin
-  
 end;