where is the routine bcopy()? SCO Unix 3.2 system

Marco Lorenzini root at gear.sublink.ORG
Tue May 22 22:53:49 AEST 1990


In <1342 at beaudin.UUCP> john at beaudin.UUCP (John Beaudin) writes:

>I've looked in the usual places. I found the reference to it in the
>device drivers writing guide, but don't know how to link it in during
>loading. The game 'wanderer' calls it. Thanks for any info.

Under System V Sco Unix the function bcopy() has been replaced with
memcpy() so you must include in your sources this define:

#define	bcopy(src, dst, len)	memcpy(dst, src, len)

or include in the Makefile:  -Dbcopy=memcpy

-- 
**********                 Marco Lorenzini           *  FAX +39.51.752643  *
*  GEAR  *  INTERNET:  marlor at gear.sublink.ORG       * VOICE +39.51.750365 *
**********          (1200-2400 MNP 4 - 9600 PEP)     * TELEX 521116 LSMECC *



More information about the Comp.unix.xenix mailing list