Lines Matching refs:bcopy
3 Subject: Do not use memcpy as an alternative for bcopy/memmove
10 Since screen already has its own bcopy implementation as a fallback
11 for the case that bcopy and memmove are unusable, removing the memcpy
34 - * Define USEBCOPY if the bcopy/memcpy from your system's C library
35 + * Define USEBCOPY if the bcopy from your system's C library
37 * undefined, screen uses its own (probably slower) version of bcopy().
55 -AC_CHECKING(whether memcpy/memmove/bcopy handles overlapping arguments)
56 +AC_CHECKING(whether memmove/bcopy handles overlapping arguments)
66 -#define bcopy(s,d,l) memcpy(d,s,l)
70 - bcopy(buf, buf + 2, 3);
74 - bcopy(buf + 2, buf, 3);
89 # define bcopy(s,d,len) memmove(d,s,len)
92 -# define bcopy(s,d,len) memcpy(d,s,len)
95 -# define bcopy xbcopy
98 +# define bcopy xbcopy
118 -extern void bcopy __P((char *, char *, int));
122 extern void bcopy __P((char *, char *, int));