emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lossage from b... functions change


From: Dave Love
Subject: lossage from b... functions change
Date: Wed, 21 May 2003 15:31:36 +0100
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux)

The recent change in configure.in to define bzero & al unconditionally
in terms of memset & al breaks gmalloc when the #if condition is false
in this block from gmalloc.c:

#if     defined(_LIBC) || defined(STDC_HEADERS) || defined(USG)
#include <string.h>
#else
#ifndef memset
#define memset(s, zero, n)      bzero ((s), (n))
#endif
#ifndef memcpy
#define memcpy(d, s, n)         bcopy ((s), (d), (n))
#endif
#endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]