mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-17 14:56:36 -04:00
11 lines
192 B
C
11 lines
192 B
C
#ifndef _IN_BOOT_INIT_H
|
|
#define _IN_BOOT_INIT_H
|
|
#include <ultra64.h>
|
|
|
|
void init(void);
|
|
s32 initGetMemSize(void);
|
|
void *allocateStack(s32 threadid, s32 size);
|
|
void mainproc(void *arg);
|
|
|
|
#endif
|