mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
10 lines
193 B
C
10 lines
193 B
C
#include "api.h"
|
|
#include "pal.h"
|
|
#include "pal_debug.h"
|
|
|
|
int main(int argc, char** argv, char** envp) {
|
|
PAL_STR args[1] = {0};
|
|
DkProcessCreate("file:Bootstrap", args);
|
|
return 0;
|
|
}
|