#ifndef __SYS_SYSCALL_H__ # define __SYS_SYSCALL_H__ #ifdef __cplusplus extern "C" { #endif /* ** This file should list the numbers of the system calls the system knows. ** But instead of duplicating this we use the information available ** from the kernel sources. */ #include /* ** The Linux kernel header file defines macros __NR_*, but some ** programs expect the traditional form SYS_*. ** defines SYS_* macros for __NR_* macros of known names. */ #include #ifdef __cplusplus } #endif #endif /*__SYS_SYSCALL_H__*/