sysheap.inc 1018 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2005 by Free Pascal development team
  4. Low level memory functions
  5. Heap functions unit for Nintendo DS
  6. Copyright (c) 2006 by Francesco Lombardi
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. {*****************************************************************************
  14. OS Memory allocation / deallocation
  15. ****************************************************************************}
  16. function SysOSAlloc(size: ptrint): pointer;
  17. begin
  18. result := nil;//pointer($02000000);
  19. end;
  20. { $define HAS_SYSOSFREE}
  21. procedure SysOSFree(p: pointer; size: ptrint);
  22. begin
  23. end;