Files
linux-kernel-module-cheat/baremetal/interactive/hello.c
Ciro Santilli 六四事件 法轮功 b1e16a59a1 baremetal: exit at the end of main instead of infinite loop
run: interpret lkmc_test_fail as the last line of test as an error
2018-11-09 09:33:44 +00:00

7 lines
65 B
C

#include <stdio.h>
void main(void) {
puts("hello");
return;
}