# HG changeset patch # User Jim Blandy # Date 740263960 0 # Node ID 5de0e54e03abf33bde3a0f1d12d4a5e8343a69bc # Parent e9b348e99645b64d76998352bf3b688642198647 * s/isc3-0.h (memmove): #define this to call safe_bcopy. diff -r e9b348e99645 -r 5de0e54e03ab src/s/isc3-0.h --- a/src/s/isc3-0.h Wed Jun 16 20:49:26 1993 +0000 +++ b/src/s/isc3-0.h Wed Jun 16 20:52:40 1993 +0000 @@ -22,3 +22,8 @@ #undef LIB_X11_LIB #undef LIBX11_SYSTEM #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc + +/* 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))