From b1e920c9009aacaf94ca630b5f5cffb0f57ef0f4 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 16 Jun 1993 20:52:40 +0000 Subject: * s/isc3-0.h (memmove): #define this to call safe_bcopy. --- src/s/isc3-0.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/s/isc3-0.h b/src/s/isc3-0.h index fe5d718bfc9..f46994e56ff 100644 --- a/src/s/isc3-0.h +++ b/src/s/isc3-0.h @@ -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)) -- cgit v1.2.1