📄 slaved.c
字号:
/* * slave.c -- the slave module of a master/slave pair using kerneld * * Tested with 2.0 on the x86, Sparc * Tested with 2.1.43 on the x86 */#ifndef __KERNEL__# define __KERNEL__#endif#ifndef MODULE# define MODULE#endif#include <linux/module.h>int init_module(void){return 0;}void cleanup_module(void){}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -