tty scanner
[mirrors/Programs.git] / c / lkm-old / hello.c
CommitLineData
8de51304
H
1#define MODULE
2#include <linux/module.h>
3
4int init_module (void) /* Loads a module in the kernel */
5{
6printk("Hello kernel\n");
7return 0;
8}
9
10void cleanup_module(void) /* Removes module from kernel */
11{
12printk("GoodBye Kernel\n");
13}
14
15
This page took 0.119685 seconds and 4 git commands to generate.