changeset 4180:01de01b59c7f

(memmove): Delete extra parens in the safe_bcopy call.
author Richard M. Stallman <rms@gnu.org>
date Tue, 20 Jul 1993 05:24:34 +0000
parents dfc4e9e14d24
children d7cb993a93b1
files src/s/isc3-0.h
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/s/isc3-0.h	Tue Jul 20 05:21:25 1993 +0000
+++ b/src/s/isc3-0.h	Tue Jul 20 05:24:34 1993 +0000
@@ -26,4 +26,6 @@
 /* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't
    find memmove, but that sounds crazy - I thought all SYSV
    descendants had that.  Let us know if this turns out to be wrong.  */
-#define	memmove(d, s, n) safe_bcopy ((s), (d), (n))
+/* It is safe to have no parens around the args in the safe_bcopy call,
+   and parens would screw up the prototype decl for memmove.  */
+#define	memmove(d, s, n) safe_bcopy (s, d, n)