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