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
commitc7f93f2840983a66cf3d4cafebf8d35b3cdf37ae (patch)
tree7d47e1e8a66f1c7241a0690a756b838abd07600c /src/sysdep.c
parent01fadb4d84964b6c37d60daef587a46d397a10c7 (diff)
downloademacs-c7f93f2840983a66cf3d4cafebf8d35b3cdf37ae.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! */