diff src/s/isc3-0.h @ 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 5de0e54e03ab
children 4e1ad3204620
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)