aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
diff options
context:
space:
mode:
authorDave Love2002-11-19 14:47:11 +0000
committerDave Love2002-11-19 14:47:11 +0000
commit04dbfa089e35a28b358e404a0b6dfe6ad133af2b (patch)
treea92fd59ab247015f8b2f305d37baa02a5d27f14b /src/s
parent06c3eeed12388e8e1e64f355e2629f43d3eaef3a (diff)
downloademacs-04dbfa089e35a28b358e404a0b6dfe6ad133af2b.tar.gz
emacs-04dbfa089e35a28b358e404a0b6dfe6ad133af2b.zip
(bcopy, bzero, bcmp): Don't define.
Diffstat (limited to 'src/s')
-rw-r--r--src/s/sco4.h5
-rw-r--r--src/s/usg5-4.h8
2 files changed, 0 insertions, 13 deletions
diff --git a/src/s/sco4.h b/src/s/sco4.h
index e4546b88a38..6015ec66385 100644
--- a/src/s/sco4.h
+++ b/src/s/sco4.h
@@ -128,11 +128,6 @@ Boston, MA 02111-1307, USA. */
128#define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail" 128#define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
129#endif 129#endif
130 130
131/* miano@acosta.enet.dec.com says these are needed. */
132#define bcopy(b1,b2,len) memmove (b2, b1, len)
133#define bzero(b,len) memset (b, 0, len)
134#define bcmp(b1,b2,len) memcmp (b1, b2, len)
135
136/* Tell process_send_signal to use VSUSP instead of VSWTCH. */ 131/* Tell process_send_signal to use VSUSP instead of VSWTCH. */
137#define PREFER_VSUSP 132#define PREFER_VSUSP
138 133
diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h
index 097bded32fe..49554b9456f 100644
--- a/src/s/usg5-4.h
+++ b/src/s/usg5-4.h
@@ -189,14 +189,6 @@ Boston, MA 02111-1307, USA. */
189 So give it a try. */ 189 So give it a try. */
190#define HAVE_SOCKETS 190#define HAVE_SOCKETS
191 191
192#ifndef HAVE_BCOPY
193#define bcopy(src,dst,n) memmove (dst,src,n)
194#define bzero(s,n) memset (s,0,n)
195#endif
196#ifndef HAVE_BCMP
197#define bcmp(src,dst,n) memcmp (src,dst,n)
198#endif
199
200/* Markus Weiand <weiand@khof.com> says this is needed for Motif on 192/* Markus Weiand <weiand@khof.com> says this is needed for Motif on
201 SINIX. */ 193 SINIX. */
202#undef LIBS_SYSTEM 194#undef LIBS_SYSTEM