Files
tp/include/init.h
T

17 lines
225 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef INIT_H
#define INIT_H
#include "dolphin/types.h"
2023-02-19 09:40:57 -08:00
#ifdef __cplusplus
extern "C" {
#endif
__declspec(section ".init") void* TRK_memset(void* dst, int val, size_t n);
#ifdef __cplusplus
}
#endif
2021-03-28 22:49:05 +02:00
#endif /* INIT_H */