1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-23 12:22:08 +00:00
Atmosphere/fusee/fusee-secondary/src/loader.c

8 lines
151 B
C
Raw Normal View History

2018-04-07 22:43:54 +01:00
#include "utils.h"
#include "loader.h"
2018-04-08 12:13:15 +01:00
entrypoint_t load_payload(const char *bct0) {
2018-04-07 22:43:54 +01:00
/* TODO */
2018-04-08 12:13:15 +01:00
(void)(bct0);
2018-04-07 22:43:54 +01:00
return (entrypoint_t)NULL;
}