From c7f93f2840983a66cf3d4cafebf8d35b3cdf37ae Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 6 May 1995 20:15:46 +0000 Subject: [PATCH] (bcmp, bcopy): Fix backward BSTRING conditionals. --- src/sysdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sysdep.c b/src/sysdep.c index f73562efd5a..c971cb32242 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -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! */ -- 2.39.2