comparison 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
comparison
equal deleted inserted replaced
4179:dfc4e9e14d24 4180:01de01b59c7f
24 #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc 24 #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc
25 25
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)