diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/bits/ipc.h | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index f0d25372c9..a810fbcfa6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +1999-11-22 Andreas Jaeger <aj@suse.de> + + * sysdeps/unix/sysv/linux/mips/syscalls.list: Add + __syscall_setrlimit. + + * sysdeps/unix/sysv/linux/mips/bits/ipc.h: Include <sys/types.h> + for key_t. + Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>. + 1999-11-21 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/fpu/libm-test-ulps: Increase error value for latest diff --git a/sysdeps/unix/sysv/linux/mips/bits/ipc.h b/sysdeps/unix/sysv/linux/mips/bits/ipc.h index fb989cceca..5c36d99ef8 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/ipc.h +++ b/sysdeps/unix/sysv/linux/mips/bits/ipc.h @@ -20,7 +20,7 @@ # error "Never use <bits/ipc.h> directly; include <sys/ipc.h> instead." #endif -#include <bits/types.h> +#include <sys/types.h> /* Mode bits for `msgget', `semget', and `shmget'. */ #define IPC_CREAT 01000 /* Create key if key does not exist. */ |