해더파일을 통한 배열 입력
Linux 바닐라 커널에 다음과 같은 코드가 있다. struct sysent { int nargs; int sys_flags; int (*sys_func)(); const char *sys_name; long native_scno; /* Match against SYS_* constants. */ }; const struct sysent *sysent; static const struct sysent sysent0[] = { #include "syscallent.h" }; // "syscallent.h" { 0, 0, sys_restart_syscall, "restart_syscall"}, /* 0 */ { 1, TP, sys_exit, "exit" }, /* 1 */ { 0, TP, sys_fork, ..
더보기