mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
* Fix many warnings, mostly when using functions without including headers, and mostly in libultra files. Included a few warning ignores as well * Add another warning fix * Revert trailing comma for LogicUpdateRates
10 lines
247 B
C
10 lines
247 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_ */
|