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: vsys.h,v 1.6 2002/10/01 21:29:45 mholst Exp $" 00021 * *************************************************************************** 00022 */ 00023 00024 /* 00025 * *************************************************************************** 00026 * File: vsys.h 00027 * 00028 * Purpose: The primary header for VSYS. 00029 * (Virtual SYStem utilities library.) 00030 * 00031 * Author: Michael Holst 00032 * *************************************************************************** 00033 */ 00034 00035 #ifndef _VSYS_H_ 00036 #define _VSYS_H_ 00037 00038 #include <maloc/maloc_base.h> 00039 00040 #include <maloc/vnm.h> 00041 #include <maloc/vmem.h> 00042 #include <maloc/vio.h> 00043 #include <maloc/vset.h> 00044 00045 #endif /* _VSYS_H_ */ 00046 00047