Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8335 maxcodehac 1
 
2
 
3
   Copyright (C) 2000,2001 Zachary Thayer Smith
4
5
   This program is free software; you can redistribute it and/or modify
6
 
7
   the Free Software Foundation; either version 2 of the License, or
8
   (at your option) any later version.
9
10
   This program is distributed in the hope that it will be useful,
11
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
   GNU General Public License for more details.
14
15
   You should have received a copy of the GNU General Public License
16
 
17
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
   The author is reachable by electronic mail at tuorfa@yahoo.com.
20
 
21
22
23
 
24
 
25
 * Author name:    Zach Smith
26
 * Create date:    1 Aug 2001
27
 * Purpose:        Definitions for memory management.
28
 *----------------------------------------------------------------------
29
 * Changes:
30
 *--------------------------------------------------------------------*/
31
32
extern char * my_malloc (unsigned long);
33
 
34
extern unsigned long total_malloced (void);
35
extern char * my_strdup (char*);
36