Files
linux-kernel-module-cheat/baremetal/hello.c
Ciro Santilli 六四事件 法轮功 34085fd96d improve the release procedure
2019-01-22 00:00:00 +00:00

7 lines
72 B
C

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