diff options
author | Andreas Jaeger <aj@suse.de> | 2000-10-20 07:02:12 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-10-20 07:02:12 +0000 |
commit | b32244b45757c65348fb45c5d1abdef0b9ac436e (patch) | |
tree | 2b08f4d519e733e4cede92f7a9959dae7ef0d24b /sysdeps/unix/sysv | |
parent | 521a2f6584a8deb317f42dbe780a1c373b6e4e6a (diff) | |
download | glibc-b32244b45757c65348fb45c5d1abdef0b9ac436e.tar glibc-b32244b45757c65348fb45c5d1abdef0b9ac436e.tar.gz glibc-b32244b45757c65348fb45c5d1abdef0b9ac436e.tar.bz2 glibc-b32244b45757c65348fb45c5d1abdef0b9ac436e.zip |
Include <asm/unistd.h>.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sys/syscall.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/sys/syscall.h b/sysdeps/unix/sysv/linux/mips/sys/syscall.h index 78248a13bd..fbfe128ec5 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/syscall.h +++ b/sysdeps/unix/sysv/linux/mips/sys/syscall.h @@ -19,6 +19,18 @@ #ifndef _SYSCALL_H #define _SYSCALL_H 1 +/* This file should list the numbers of the system the system knows. + But instead of duplicating this we use the information available + from the kernel sources. */ +#include <asm/unistd.h> + +/* The Linux kernel header file defines macros `__NR_<name>', but some + programs expect the traditional form `SYS_<name>'. So in building libc + we scan the kernel's list and produce <bits/syscall.h> with macros for + all the `SYS_' names. On MIPS the program which generates <bits/syscalls.h> + on the other ports fails, so do this manually. */ + + /* * SVR4 syscalls are in the range from 1 to 999 */ |