mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
(bcopy) Use memmove instead of memcpy.
This commit is contained in:
parent
4fb83f3cde
commit
6d1e5a964e
1 changed files with 1 additions and 1 deletions
|
|
@ -196,6 +196,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
So give it a try. */
|
||||
#define HAVE_SOCKETS
|
||||
|
||||
#define bcopy(src,dst,n) memcpy(dst,src,n)
|
||||
#define bcopy(src,dst,n) memmove(dst,src,n)
|
||||
#define bcmp(src,dst,n) memcmp(src,dst,n)
|
||||
#define bzero(s,n) memset(s,0,n)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue