MALOC 0.1
|
00001 /* 00002 * *************************************************************************** 00003 * MALOC = < Minimal Abstraction Layer for Object-oriented C > 00004 * Copyright (C) 1994--2000 Michael Holst 00005 * 00006 * This program is free software; you can redistribute it and/or modify it 00007 * under the terms of the GNU General Public License as published by the 00008 * Free Software Foundation; either version 2 of the License, or (at your 00009 * option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00014 * See the GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License along 00017 * with this program; if not, write to the Free Software Foundation, Inc., 00018 * 675 Mass Ave, Cambridge, MA 02139, USA. 00019 * 00020 * rcsid="$Id: maloc.h,v 1.16 2006/06/03 07:22:28 mholst Exp $" 00021 * *************************************************************************** 00022 */ 00023 00024 /* 00025 * *************************************************************************** 00026 * File: maloc.h 00027 * 00028 * Purpose: The foundation header for MALOC. 00029 * 00030 * Notes: This is the main header file for all of MALOC. 00031 * This is the only file that needs to be included 00032 * in order to access the entire library. 00033 * 00034 * Author: Michael Holst 00035 * *************************************************************************** 00036 */ 00037 00038 #ifndef _MALOC_H_ 00039 #define _MALOC_H_ 00040 00041 #include <maloc/maloc_base.h> 00042 00043 #include <maloc/vsys.h> 00044 #include <maloc/vsh.h> 00045 #include <maloc/psh.h> 00046 00047 #endif /* _MALOC_H_ */ 00048 00049