changeset 11722:d7089b2620fb

(bcmp, bcopy): Fix backward BSTRING conditionals.
author Richard M. Stallman <rms@gnu.org>
date Sat, 06 May 1995 20:15:46 +0000
parents bb59c20c60cb
children a812bce4aef0
files src/sysdep.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Sat May 06 20:14:52 1995 +0000
+++ b/src/sysdep.c	Sat May 06 20:15:46 1995 +0000
@@ -4995,7 +4995,7 @@
 #endif /* no bzero */
 #endif /* BSTRING */
 
-#if (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
+#if (!defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY)
 #undef bcopy
 
 /* Saying `void' requires a declaration, above, where bcopy is used
@@ -5023,7 +5023,7 @@
 }
 #endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
 
-#ifdef BSTRING
+#ifndef BSTRING
 #ifndef bcmp
 int
 bcmp (b1, b2, length)	/* This could be a macro! */