Files
linux-kernel-module-cheat/packages/kernel_modules/user/hello.c

10 lines
176 B
C

/* https://github.com/cirosantilli/linux-kernel-module-cheat#sanity-checks */
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("hello");
return EXIT_SUCCESS;
}