]> git.eshelyaron.com Git - emacs.git/commitdiff
(bcmp, bcopy): Fix backward BSTRING conditionals.
authorRichard M. Stallman <rms@gnu.org>
Sat, 6 May 1995 20:15:46 +0000 (20:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 6 May 1995 20:15:46 +0000 (20:15 +0000)
src/sysdep.c

index f73562efd5ad0f8ebc1ad4be4ac63092210de372..c971cb322427775dd2154de0aedfbfee9d6915aa 100644 (file)
@@ -4995,7 +4995,7 @@ bzero (b, length)
 #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 @@ bcopy (b1, b2, length)
 }
 #endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */
 
-#ifdef BSTRING
+#ifndef BSTRING
 #ifndef bcmp
 int
 bcmp (b1, b2, length)  /* This could be a macro! */