fix the MXE fix for os_libc.h

This commit is contained in:
Colton G. Rushton 2020-05-16 17:21:59 -03:00 committed by GitHub
parent 8736776545
commit 385e396feb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
// Old deprecated functions from strings.h, replaced by memcpy/memset.
#ifdef NO_BZERO
#include <string.h>
#define bzero(buf, size) memset(buf, 0, size)
#define bcopy(src, dst, size) memcpy(dst, src, size)
#define bzero(buf, size) memset((buf), 0, (size))
#define bcopy(src, dst, size) memcpy((dst), (src), (size))
#else
extern void bcopy(const void *, void *, size_t);
extern void bzero(void *, size_t);