aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-01-04 08:42:21 +0000
committerRichard M. Stallman <[email protected]>1994-01-04 08:42:21 +0000
commit63456da576dc85ee3cb504ac60a4edaecec7b7fe (patch)
treeed98d8662175702ece0f943d14c9c98543a073ab /src/s
parent8ca83cfd88ae7b0a05cddbe13d3a23155d4d716e (diff)
(bcopy, bzero, bcmp): Defined.
Diffstat (limited to 'src/s')
-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 16866059d1..ec5b5c3922 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
+
+/* [email protected] 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)