mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
9 lines
129 B
C
9 lines
129 B
C
#include <stdlib.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
if (system("./helloworld")) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|