summaryrefslogtreecommitdiff
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-05-06 20:15:46 +0000
committerRichard M. Stallman <rms@gnu.org>1995-05-06 20:15:46 +0000
commita3446cca6af9b5f785c50fd7ca5758fb6fdd2c7a (patch)
tree0102b9ecc82b4a98919b4a41e80e2fb66cfdf40d /src/sysdep.c
parent4d9e4a10bb830be228b63c13780a01259d5f70cc (diff)
downloademacs-a3446cca6af9b5f785c50fd7ca5758fb6fdd2c7a.tar.gz
(bcmp, bcopy): Fix backward BSTRING conditionals.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c4
1 files 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! */