You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
11 lines
248 B
C
11 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_ */
|