Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > afdcfc364877ff5b5fc90cad008e9a19 > files > 127

lkmpg-1.1.0-15mdv2010.0.noarch.rpm

/*
 *  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("Hello, world - this is the kernel speaking\n");
	return 0;
}