Atmosphere/fusee/fusee-secondary/src/loader.c

8 lines
151 B
C
Raw Normal View History

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