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:
parent
8ca83cfd88
commit
63456da576
1 changed files with 5 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue