# HG changeset patch # User Richard M. Stallman # Date 743145874 0 # Node ID 01de01b59c7f8f9ca6820a571667733ad21d92a5 # Parent dfc4e9e14d24bfc72060ae94c7add4eab65a07ba (memmove): Delete extra parens in the safe_bcopy call. diff -r dfc4e9e14d24 -r 01de01b59c7f src/s/isc3-0.h --- 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)