mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Removed use of HAVE_MEMMOVE as well have_memmv.c. Removed the building and including of have_memmv.h. Removed the memmove() function in blkcpy.c, used when HAVE_MEMMOVE was NOT defined. The libc memmove(3) function as defined by <string.h> is now required to compile calc because the replacement code in blkcpy.c q was problematic, especially when regions overlap. The HAVE_MEMMOVE make symbol was removed from Makefile.config. Thanks to GitHub user @skeeto for reporting this problem.
81 lines
2.1 KiB
C
81 lines
2.1 KiB
C
/*
|
|
* alloc - storage allocation and storage debug macros
|
|
*
|
|
* Copyright (C) 1999-2007,2014,2025 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.
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* 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(INCLUDE_ALLOC_H)
|
|
#define INCLUDE_ALLOC_H
|
|
|
|
|
|
#if defined(CALC_SRC) /* if we are building from the calc source tree */
|
|
# include "decl.h"
|
|
# include "have_newstr.h"
|
|
# include "have_string.h"
|
|
# include "have_const.h"
|
|
#else
|
|
# include <calc/decl.h>
|
|
# include <calc/have_newstr.h>
|
|
# include <calc/have_string.h>
|
|
# include <calc/have_const.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
# include <string.h>
|
|
|
|
#else
|
|
#include <stdio.h>
|
|
|
|
# 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 */
|
|
|
|
#endif /* !INCLUDE_ALLOC_H */
|