diff options
Diffstat (limited to 'src')
| -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 @@ | |||
| 26 | /* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't | 26 | /* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't |
| 27 | find memmove, but that sounds crazy - I thought all SYSV | 27 | find memmove, but that sounds crazy - I thought all SYSV |
| 28 | descendants had that. Let us know if this turns out to be wrong. */ | 28 | descendants had that. Let us know if this turns out to be wrong. */ |
| 29 | #define memmove(d, s, n) safe_bcopy ((s), (d), (n)) | 29 | /* It is safe to have no parens around the args in the safe_bcopy call, |
| 30 | and parens would screw up the prototype decl for memmove. */ | ||
| 31 | #define memmove(d, s, n) safe_bcopy (s, d, n) | ||