From: Richard M. Stallman Date: Tue, 4 Jan 1994 08:42:21 +0000 (+0000) Subject: (bcopy, bzero, bcmp): Defined. X-Git-Tag: emacs-19.34~10415 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=63456da576dc85ee3cb504ac60a4edaecec7b7fe;p=emacs.git (bcopy, bzero, bcmp): Defined. --- 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)