#include <linux/module.h> #include <linux/init.h>
MODULE_LICENSE("GPL");
static int hello_init(void) { printk(KERN_ALERT“ Hello world.n"); return 0; }
static void hello_exit(void) { printk("KERN_ALERT Goodbye world.n"); }
module_init(hello_init); module_exit(hello_exit); 请问这个最小模块,我在linux下用gcc编译时提示KERN_ALERT ,printk等找不到, 是什么问题, |