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