mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 13:21:37 +00:00
Applications under native/ cannot be run after commit "Introduce one, central manifest, zero-config children and constant MRENCLAVE". Instead of fixing native/, this commit simply moves helloworld and all its mentions under regression/.
7 lines
100 B
C
7 lines
100 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
printf("Hello world!\n");
|
|
return 0;
|
|
}
|