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
5    Basic heap handling
6
7    See the file COPYING.FPC, included in this distribution,
8    for details about the copyright.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 **********************************************************************}
15
16{*****************************************************************************
17      OS Memory allocation / deallocation
18 ****************************************************************************}
19
20
21function SysOSAlloc(size: ptruint): pointer;
22begin
23
24end;
25
26{$define HAS_SYSOSFREE}
27
28procedure SysOSFree(p: pointer; size: ptruint);
29begin
30
31end;
32