Files
linux-kernel-module-cheat/lkmc/c/hello.c
2019-05-21 00:00:00 +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;
}