mirror of
https://github.com/sm64pc/sm64pc.git
synced 2025-04-12 00:05:59 +02:00
fix the MXE fix for os_libc.h
This commit is contained in:
parent
8736776545
commit
385e396feb
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user