blob: dc00f4ab70350ecc68a9b14d2f18cd25ed3ef10a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <unistd.h>
#include <stdio.h>
int main(int argc, char **argv)
{
(void)argc;
(void)argv;
fputs("hello, runtime world!\n", stdout);
while (1);
return 0;
}
|