/* Copyright (C) 1989, 1992, 1996, 1998 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: malloc_.h,v 1.2.6.1.2.1 2003/01/17 00:49:05 giles Exp $ */ /* Generic substitute for Unix malloc.h */ #ifndef malloc__INCLUDED # define malloc__INCLUDED /* We must include std.h before any file that includes sys/types.h. */ #include "std.h" #ifdef __TURBOC__ # include #else # if defined(BSD4_2) || defined(apollo) || defined(vax) || defined(sequent) || defined(UTEK) # if defined(_POSIX_SOURCE) || (defined(__STDC__) && (!defined(sun) || defined(__svr4__))) /* >>> */ # include # else /* Ancient breakage */ extern char *malloc(); extern void free(); # endif # else # if defined(_HPUX_SOURCE) || defined(__CONVEX__) || defined(__convex__) || defined(__OSF__) || defined(__386BSD__) || defined(_POSIX_SOURCE) || defined(__STDC__) || defined(VMS) # include # else # include # endif /* !_HPUX_SOURCE, ... */ # endif /* !BSD4_2, ... */ #endif /* !__TURBOC__ */ /* (At least some versions of) Linux don't have a working realloc.... */ #ifdef linux # define malloc__need_realloc void *gs_realloc(P3(void *, size_t, size_t)); #else # define gs_realloc(ptr, old_size, new_size) realloc(ptr, new_size) #endif #endif /* malloc__INCLUDED */