00001 // Magic Software, Inc. 00002 // http://www.magic-software.com 00003 // Copyright (c) 2000-2003. All Rights Reserved 00004 // 00005 // Source code from Magic Software is supplied under the terms of a license 00006 // agreement and may not be copied or disclosed except in accordance with the 00007 // terms of that agreement. The various license agreements may be found at 00008 // the Magic Software web site. This file is subject to the license 00009 // 00010 // FREE SOURCE CODE 00011 // http://www.magic-software.com/License/free.pdf 00012 00013 #ifndef MGCRTLIB_H 00014 #define MGCRTLIB_H 00015 00016 // A wrapper around some headers for run-time libraries. 00017 00018 #include <assert.h> 00019 #include <ctype.h> 00020 #include <float.h> 00021 #include <math.h> 00022 #include <stddef.h> 00023 #include <stdio.h> 00024 #include <stdlib.h> 00025 #include <string.h> 00026 00027 #endif 00028 00029