sysheap.inc 864 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2007 by contributors of the Free Pascal Compiler
  4. Basic heap handling
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {*****************************************************************************
  12. OS Memory allocation / deallocation
  13. ****************************************************************************}
  14. function SysOSAlloc(size: ptrint): pointer;
  15. begin
  16. end;
  17. {$define HAS_SYSOSFREE}
  18. procedure SysOSFree(p: pointer; size: ptrint);
  19. begin
  20. end;