MALOC  0.1
maloc.h
1 /*
2  * ***************************************************************************
3  * MALOC = < Minimal Abstraction Layer for Object-oriented C >
4  * Copyright (C) 1994--2000 Michael Holst
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; either version 2 of the License, or (at your
9  * option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * rcsid="$Id: maloc.h,v 1.16 2006/06/03 07:22:28 mholst Exp $"
21  * ***************************************************************************
22  */
23 
24 /*
25  * ***************************************************************************
26  * File: maloc.h
27  *
28  * Purpose: The foundation header for MALOC.
29  *
30  * Notes: This is the main header file for all of MALOC.
31  * This is the only file that needs to be included
32  * in order to access the entire library.
33  *
34  * Author: Michael Holst
35  * ***************************************************************************
36  */
37 
38 #ifndef _MALOC_H_
39 #define _MALOC_H_
40 
41 #include <maloc/maloc_base.h>
42 
43 #include <maloc/vsys.h>
44 #include <maloc/vsh.h>
45 #include <maloc/psh.h>
46 
47 #endif /* _MALOC_H_ */
48 
49