/* * alloc - storage allocation and storage debug macros * * Copyright (C) 1999-2007 David I. Bell * * Calc is open software; you can redistribute it and/or modify it under * the terms of the version 2.1 of the GNU Lesser General Public License * as published by the Free Software Foundation. * * Calc 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 Lesser General * Public License for more details. * * A copy of version 2.1 of the GNU Lesser General Public License is * distributed with calc under the filename COPYING-LGPL. You should have * received a copy with calc; if not, write to Free Software Foundation, Inc. * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * @(#) $Revision: 29.6 $ * @(#) $Id: alloc.h,v 29.6 2007/02/11 10:19:14 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/calc/RCS/alloc.h,v $ * * Under source code control: 1990/02/15 01:48:29 * File existed as early as: before 1990 * * Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/ */ #if !defined(__ALLOC_H__) #define __ALLOC_H__ #if defined(CALC_SRC) /* if we are building from the calc source tree */ # include "have_malloc.h" # include "have_newstr.h" # include "have_string.h" # include "have_memmv.h" #else # include # include # include # include #endif #ifdef HAVE_MALLOC_H # include #else #if defined(FORCE_STDC) || (defined(__STDC__) && __STDC__ != 0) || defined(__cplusplus) E_FUNC void *malloc(); E_FUNC void *realloc(); E_FUNC void free(); # else E_FUNC char *malloc(); E_FUNC char *realloc(); E_FUNC void free(); # endif #endif #ifdef HAVE_STRING_H # include #else # if defined(HAVE_NEWSTR) E_FUNC void *memcpy(); E_FUNC void *memset(); #if defined(FORCE_STDC) || (defined(__STDC__) && __STDC__ != 0) || defined(__cplusplus) E_FUNC size_t strlen(); # else E_FUNC long strlen(); # endif # else /* HAVE_NEWSTR */ E_FUNC void bcopy(); E_FUNC void bfill(); E_FUNC char *index(); # endif /* HAVE_NEWSTR */ E_FUNC char *strchr(); E_FUNC char *strcpy(); E_FUNC char *strncpy(); E_FUNC char *strcat(); E_FUNC int strcmp(); #endif #if !defined(HAVE_NEWSTR) #undef memcpy #define memcpy(s1, s2, n) bcopy(s2, s1, n) #undef memset #define memset(s, c, n) bfill(s, n, c) #undef strchr #define strchr(s, c) index(s, c) #endif /* HAVE_NEWSTR */ #if !defined(HAVE_MEMMOVE) # undef MEMMOVE_SIZE_T #if defined(FORCE_STDC) || (defined(__STDC__) && __STDC__ != 0) || defined(__cplusplus) # define MEMMOVE_SIZE_T size_t # else # define MEMMOVE_SIZE_T long # endif E_FUNC void *memmove(void *s1, CONST void *s2, MEMMOVE_SIZE_T n); #endif #endif /* !__ALLOC_H__ */