#include <linux/module.h> #include <linux/init.h> #define __license__ "GPL" static int __init hello_init(void) { printk("Hello ,cool world!
"); return 0; } static void __exit hello_exit(void) { printk("Goodbye,cruel world
"); } MODULE_LICENSE(__license__); module_init(hello_init); module_exit(hello_exit);
|