mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
18 lines
325 B
C
18 lines
325 B
C
/*
|
|
* sys/syscall.h
|
|
*
|
|
* Generic system call interface macros
|
|
*/
|
|
#ifndef _SYS_SYSCALL_H
|
|
#define _SYS_SYSCALL_H
|
|
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <asm/unistd.h>
|
|
|
|
/* Many architectures have incomplete, defective or non-applicable
|
|
syscall macros */
|
|
#include <klibc/archsys.h>
|
|
|
|
#endif /* _SYS_SYSCALL_H */
|