hello.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*                                                     
  2.  * $Id: hello.c,v 1.10 2001/07/17 10:30:02 rubini Exp $ 
  3.  */                                                    
  4. #define MODULE
  5. #include <linux/module.h>
  6. /*                                                        
  7.  * These lines, although not shown in the book,           
  8.  * are needed to make hello.c run properly even when      
  9.  * your kernel has version support enabled                
  10.  */                                                       
  11.                                                           
  12. int init_module(void)      { printk("<1>Hello, worldn"); return 0; }
  13. void cleanup_module(void)  { printk("<1>Goodbye cruel worldn"); }