diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-20 05:24:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-20 05:24:34 +0000 |
commit | 73ba415ae2cf611d0dc8465994249e9bf0d0897b (patch) | |
tree | 7325220d3ee624741b9998aa2e27855745e79f61 /src/s/isc3-0.h | |
parent | 9a4cc6bd8d0692da02a659a021efe4925533725e (diff) | |
download | emacs-73ba415ae2cf611d0dc8465994249e9bf0d0897b.tar.gz |
(memmove): Delete extra parens in the safe_bcopy call.
Diffstat (limited to 'src/s/isc3-0.h')
-rw-r--r-- | src/s/isc3-0.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/s/isc3-0.h b/src/s/isc3-0.h index f46994e56ff..7e71bed66fa 100644 --- a/src/s/isc3-0.h +++ b/src/s/isc3-0.h @@ -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) |