mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
10 lines
248 B
C
10 lines
248 B
C
#ifndef _OS_LIBC_H_
|
|
#define _OS_LIBC_H_
|
|
|
|
#include "ultratypes.h"
|
|
|
|
// Old deprecated functions from strings.h, replaced by memcpy/memset.
|
|
extern void bcopy(const void *, void *, size_t);
|
|
extern void bzero(void *, size_t);
|
|
|
|
#endif /* !_OS_LIBC_H_ */
|