diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-27 19:31:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-27 19:31:31 +0000 |
commit | 345b9927e608fd92e6231ef803b940afd6e6558c (patch) | |
tree | be1e753e49b734d3d8f73cc202a9792faedaef34 /libc/sysdeps/linux/h8300/bits/syscalls.h | |
parent | dbee84a1784a929efcd6f0956ead1dbbf6136462 (diff) |
Make sure that bits/syscalls.h always includes bits/syscall.h
-Erik
Diffstat (limited to 'libc/sysdeps/linux/h8300/bits/syscalls.h')
-rw-r--r-- | libc/sysdeps/linux/h8300/bits/syscalls.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/h8300/bits/syscalls.h b/libc/sysdeps/linux/h8300/bits/syscalls.h index da6a6d43e..fff97378f 100644 --- a/libc/sysdeps/linux/h8300/bits/syscalls.h +++ b/libc/sysdeps/linux/h8300/bits/syscalls.h @@ -11,5 +11,10 @@ #define _BITS_SYSCALL_H #include <asm/unistd.h> +/* This includes the `__NR_<name>' syscall numbers taken from the Linux kernel + * header files. It also defines the traditional `SYS_<name>' macros for older + * programs. */ +#include <bits/syscall.h> + #endif /* _BITS_SYSCALLS_H */ |