mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-24 19:34:01 +00:00
9 lines
240 B
C
9 lines
240 B
C
#include <cleonos_syscall.h>
|
|
|
|
static const char elfrunner_banner[] = "[KAPP][ELFRUNNER] elfrunner.elf online";
|
|
|
|
int cleonos_app_main(void) {
|
|
cleonos_sys_log_write(elfrunner_banner, (u64)(sizeof(elfrunner_banner) - 1U));
|
|
return 0;
|
|
}
|