mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
19 lines
339 B
C
19 lines
339 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#pragma section code_type ".init"
|
|
|
|
void * memcpy(void * dst, const void * src, size_t n);
|
|
void * memset(void * dst, int val, size_t n);
|
|
void __fill_mem(void * dst, int val, unsigned long n);
|
|
|
|
#pragma section code_type
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |