1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

Fix last change.

This commit is contained in:
Dave Love 2002-09-05 17:11:25 +00:00
parent f264acb0e4
commit 355036dd67

View file

@ -193,7 +193,7 @@ Boston, MA 02111-1307, USA. */
#define bcopy(src,dst,n) memmove (dst,src,n)
#define bzero(s,n) memset (s,0,n)
#endif
#ifdef HAVE_BCMP
#ifndef HAVE_BCMP
#define bcmp(src,dst,n) memcmp (src,dst,n)
#endif