LDP/LDP/guide/docbook/lkmpg/2.6/lkmpg-examples/02-HelloWorld/start.c

13 lines
274 B
C

/*
* start.c - Illustration of multi filed modules
*/
#include <linux/kernel.h> /* We're doing kernel work */
#include <linux/module.h> /* Specifically, a module */
int init_module(void)
{
printk(KERN_INFO "Hello, world - this is the kernel speaking\n");
return 0;
}