From: Dave Love Date: Thu, 5 Sep 2002 17:11:25 +0000 (+0000) Subject: Fix last change. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~366 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=355036dd6776f0c07f8445ade611548a661528e7;p=emacs.git Fix last change. --- diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 6a28e8e9c54..097bded32fe 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -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