Release calc version 2.12.1.9

This commit is contained in:
Landon Curt Noll
2007-02-07 13:30:53 -08:00
parent 5c565a7cea
commit 2441df7fdc
10 changed files with 175 additions and 64 deletions

12
alloc.h
View File

@@ -17,8 +17,8 @@
* 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.4 $
* @(#) $Id: alloc.h,v 29.4 2001/06/08 21:00:58 chongo Exp $
* @(#) $Revision: 29.5 $
* @(#) $Id: alloc.h,v 29.5 2007/02/07 20:51:38 chongo Exp $
* @(#) $Source: /usr/local/src/cmd/calc/RCS/alloc.h,v $
*
* Under source code control: 1990/02/15 01:48:29
@@ -94,13 +94,13 @@ extern int strcmp();
#endif /* HAVE_NEWSTR */
#if !defined(HAVE_MEMMOVE)
# undef CALC_SIZE_T
# undef MEMMOVE_SIZE_T
#if defined(FORCE_STDC) || (defined(__STDC__) && __STDC__ != 0) || defined(__cplusplus)
# define CALC_SIZE_T size_t
# define MEMMOVE_SIZE_T size_t
# else
# define CALC_SIZE_T long
# define MEMMOVE_SIZE_T long
# endif
extern void *memmove(void *s1, const void *s2, CALC_SIZE_T n);
extern void *memmove(void *s1, const void *s2, MEMMOVE_SIZE_T n);
#endif
#endif /* !__ALLOC_H__ */