sm64pc/include/PR/os_libc.h

11 lines
248 B
C
Raw Permalink Normal View History

2019-08-25 04:46:40 +00:00
#ifndef _OS_LIBC_H_
2019-11-03 19:36:27 +00:00
#define _OS_LIBC_H_
2019-08-25 04:46:40 +00:00
2019-11-03 19:36:27 +00:00
#include "ultratypes.h"
2019-08-25 04:46:40 +00:00
2019-11-03 19:36:27 +00:00
// Old deprecated functions from strings.h, replaced by memcpy/memset.
extern void bcopy(const void *, void *, size_t);
extern void bzero(void *, size_t);
2019-08-25 04:46:40 +00:00
#endif /* !_OS_LIBC_H_ */