changeset 3762:5de0e54e03ab

* s/isc3-0.h (memmove): #define this to call safe_bcopy.
author Jim Blandy <jimb@redhat.com>
date Wed, 16 Jun 1993 20:52:40 +0000
parents e9b348e99645
children c58fb240170d
files src/s/isc3-0.h
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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))