# HG changeset patch # User Richard M. Stallman # Date 799791346 0 # Node ID d7089b2620fbfd81719841e97d6c9c1652ad67a7 # Parent bb59c20c60cb6291e14c5c4adc7ad61ba04ff214 (bcmp, bcopy): Fix backward BSTRING conditionals. diff -r bb59c20c60cb -r d7089b2620fb src/sysdep.c --- 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! */