blob: 224aeed6f517dc7d147d71110a0301fa80127eca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
static int __init hello_2_init(void)
{
printk(KERN_INFO "Hola, mundo! 2\n");
return 0;
}
module_init(hello_2_init);
MODULE_AUTHOR("Guillermo Ramos");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Módulo tonto");
|