changeset 5436:513e73023f78

(bcopy, bzero, bcmp): Defined.
author Richard M. Stallman <rms@gnu.org>
date Tue, 04 Jan 1994 08:42:21 +0000
parents d7408b99b88f
children 7a9ff03ecccf
files src/s/sco4.h
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/s/sco4.h	Tue Jan 04 06:46:12 1994 +0000
+++ b/src/s/sco4.h	Tue Jan 04 08:42:21 1994 +0000
@@ -123,3 +123,8 @@
 #else
 #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
 #endif
+
+/* miano@acosta.enet.dec.com says these are needed.  */
+#define bcopy(b1,b2,len) memmove (b2, b1, len)
+#define bzero(b,len) memset (b, 0, len)
+#define bcmp(b1,b2,len) memcmp (b1, b2, len)