summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-01-04 08:42:21 +0000
committerRichard M. Stallman <rms@gnu.org>1994-01-04 08:42:21 +0000
commit63456da576dc85ee3cb504ac60a4edaecec7b7fe (patch)
treeed98d8662175702ece0f943d14c9c98543a073ab
parent8ca83cfd88ae7b0a05cddbe13d3a23155d4d716e (diff)
downloademacs-63456da576dc85ee3cb504ac60a4edaecec7b7fe.tar.gz
(bcopy, bzero, bcmp): Defined.
-rw-r--r--src/s/sco4.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/s/sco4.h b/src/s/sco4.h
index 16866059d18..ec5b5c3922b 100644
--- a/src/s/sco4.h
+++ b/src/s/sco4.h
@@ -123,3 +123,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#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)