1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-19 06:31:34 -08:00

(bcopy, bzero, bcmp): Defined.

This commit is contained in:
Richard M. Stallman 1994-01-04 08:42:21 +00:00
parent 8ca83cfd88
commit 63456da576

View file

@ -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)