Files
linux-kernel-module-cheat/userland/c/hello.c
Ciro Santilli 六四事件 法轮功 fbfc4905ec baremetal: build userland programs using userland_and_baremetal instead of symlinks
Otherwise I'll go crazy with symlink action.
2019-05-23 00:00:01 +00:00

10 lines
136 B
C

/* Print hello to stdout ;-) */
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("hello");
return EXIT_SUCCESS;
}