mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
e0a17187ad
* daalink / z2linkmgr wip * first cleanup of JASGlobalInstance data * fix sInstance stuff part 2 * more d_a_alink_swim work * remove asm * JMessage work * remove asm
18 lines
266 B
C
18 lines
266 B
C
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
#include "MSL_C/MSL_Common/Src/string.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 */
|