Files
Ciro Santilli f6a2dcffb5 readme split
2017-11-01 14:09:22 +00:00

18 lines
238 B
C

#include <linux/module.h>
#include <linux/kernel.h>
static int myinit(void)
{
pr_info("hello init\n");
return 0;
}
static void myexit(void)
{
pr_info("hello exit\n");
}
module_init(myinit)
module_exit(myexit)
MODULE_LICENSE("GPL");