Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/PR/os_libc.h
7858 views
1
#ifndef _OS_LIBC_H_
2
#define _OS_LIBC_H_
3
4
#include "ultratypes.h"
5
6
#ifndef TARGET_MACOS
7
// Old deprecated functions from strings.h, replaced by memcpy/memset.
8
extern void bcopy(const void *, void *, size_t);
9
extern void bzero(void *, size_t);
10
#endif
11
12
#endif /* !_OS_LIBC_H_ */
13
14