코드 테스트

houyhn의 이미지

Quote:

int main()
{
int i;

for (i=0; i<10; i++)
printf("i=%d\n",i);
}

정진철의 이미지

우랄랄라

public class H{
  public static void main(String args[]){
    System.out.println("H");
  }
}
무혼인형의 이미지

/* 
* stop.c 
* Copyright (C) 1999 by Ori Pomerantz 
* 
* "Hello, world" - 커널 모듈 버전.  
* 이 파일은 단지 종료 루틴만을 포함한다. 
*/ 

/* 필요한 헤더 파일들 */ 
/* 커널 모듈 안에서의 표준 헤더 */ 
#include <linux/kernel.h>   /* 커널 작업을 수행한다.*/ 
#define __NO_VERSION__      /* 커널 모듈의 파일이 아니다.*/ 
#include <linux/module.h>   /* 특별히, 하나의 모듈에서 */ 
#include <linux/version.h>  /* __NO_VERSION__때문에, module.h에 의해서 포함되지 
                               않았다. */
 
/* CONFIG_MODVERSIONS 다루기*/ 
#if CONFIG_MODVERSIONS==1 
#define MODVERSIONS 
#include <linux/modversions.h> 
#endif 

/* 제거 - init_module이 무엇을 했던 간에 되돌린다 */ 
void cleanup_module() 
{ 
	printk("Short is the life of a kernel module\n"); 
} 

http://kldp.org/Translations/Kernel_Module_Programming_Guide에서 가져왔습니다 :oops: