/* https://cirosantilli.com/linux-kernel-module-cheat#c * * Print hello to stdout ;-) */ #include #include int main(void) { puts("hello"); return EXIT_SUCCESS; }