/* Copyright (C) 1989, 1992, 1996, 1998 Aladdin Enterprises. All rights reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. For more information about licensing, please refer to http://www.ghostscript.com/licensing/. For information on commercial licensing, go to http://www.artifex.com/licensing/ or contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. */ /* $Id: malloc_.h,v 1.5 2002/06/16 05:03:12 lpd 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(void *, size_t, size_t); #else # define gs_realloc(ptr, old_size, new_size) realloc(ptr, new_size) #endif #endif /* malloc__INCLUDED */