diff options
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/sigignore.c | 2 | ||||
-rw-r--r-- | sysdeps/posix/sigset.c | 2 | ||||
-rw-r--r-- | sysdeps/posix/waitid.c | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/sysdeps/posix/sigignore.c b/sysdeps/posix/sigignore.c index f24aca70c9..497af577f8 100644 --- a/sysdeps/posix/sigignore.c +++ b/sysdeps/posix/sigignore.c @@ -19,6 +19,8 @@ Boston, MA 02111-1307, USA. */ #include <errno.h> +#define __need_NULL +#include <stddef.h> #include <signal.h> int diff --git a/sysdeps/posix/sigset.c b/sysdeps/posix/sigset.c index 4bd3bf38c8..1a6b1a4fd3 100644 --- a/sysdeps/posix/sigset.c +++ b/sysdeps/posix/sigset.c @@ -17,6 +17,8 @@ Boston, MA 02111-1307, USA. */ #include <errno.h> +#define __need_NULL +#include <stddef.h> #include <signal.h> diff --git a/sysdeps/posix/waitid.c b/sysdeps/posix/waitid.c index a36883a8d2..fa9021115f 100644 --- a/sysdeps/posix/waitid.c +++ b/sysdeps/posix/waitid.c @@ -1,5 +1,5 @@ /* Pseudo implementation of waitid. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1997. @@ -20,6 +20,8 @@ #include <errno.h> #include <signal.h> +#define __need_NULL +#include <stddef.h> #include <sys/wait.h> #include <sys/types.h> |