(memmove): Delete extra parens in the safe_bcopy call.
This commit is contained in:
parent
9a4cc6bd8d
commit
73ba415ae2
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue