diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-16 20:52:40 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-16 20:52:40 +0000 |
commit | b1e920c9009aacaf94ca630b5f5cffb0f57ef0f4 (patch) | |
tree | 8439d4e23d96a1634681b8c0249812cadb3978ad | |
parent | b3fb7fc34ef049ab221576b24bf722f4086cd53e (diff) | |
download | emacs-b1e920c9009aacaf94ca630b5f5cffb0f57ef0f4.tar.gz |
* s/isc3-0.h (memmove): #define this to call safe_bcopy.
-rw-r--r-- | src/s/isc3-0.h | 5 |
1 files changed, 5 insertions, 0 deletions
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)) |