mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -04:00
43a5f69094
* MSL_C/string.h * MSL_C/stdlib.h
17 lines
225 B
C
17 lines
225 B
C
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
__declspec(section ".init") void* TRK_memset(void* dst, int val, size_t n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* INIT_H */
|