mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 22:01:29 +00:00
8 lines
166 B
C
8 lines
166 B
C
#include <shim_table.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
shim_write(1, "Hello world\n", 12);
|
|
shim_exit_group(0);
|
|
return 1; // should not reach here.
|
|
}
|