diff options
-rw-r--r-- | libc/misc/sysvipc/sem.c | 6 | ||||
-rw-r--r-- | libpthread/linuxthreads/sysdeps/mips/pspinlock.c | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/libc/misc/sysvipc/sem.c b/libc/misc/sysvipc/sem.c index 1caec5a8c..d7de5a346 100644 --- a/libc/misc/sysvipc/sem.c +++ b/libc/misc/sysvipc/sem.c @@ -20,6 +20,8 @@ #include <errno.h> #include <sys/sem.h> #include <stddef.h> +#include <stdlib.h> /* for NULL */ + #include "ipc.h" @@ -27,7 +29,6 @@ /* Return identifier for array of NSEMS semaphores associated with KEY. */ #include <stdarg.h> -#include <stdlib.h> /* arg for semctl system calls. */ union semun { int val; /* value for SETVAL */ @@ -61,9 +62,6 @@ int semctl(int semid, int semnum, int cmd, ...) #endif #ifdef L_semget -/* for definition of NULL */ -#include <stdlib.h> - #ifdef __NR_semget _syscall3(int, semget, key_t, key, int, nsems, int, semflg); diff --git a/libpthread/linuxthreads/sysdeps/mips/pspinlock.c b/libpthread/linuxthreads/sysdeps/mips/pspinlock.c index a106c0f77..4d6617e1b 100644 --- a/libpthread/linuxthreads/sysdeps/mips/pspinlock.c +++ b/libpthread/linuxthreads/sysdeps/mips/pspinlock.c @@ -23,8 +23,6 @@ #include <sys/tas.h> #include "internals.h" -#include <sgidefs.h> - /* This implementation is similar to the one used in the Linux kernel. */ int __pthread_spin_lock (pthread_spinlock_t *lock) |