diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-20 09:41:04 +0100 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-22 11:28:42 -0800 |
commit | 03171505a2079ddbd58e9562dddf105349d9da5a (patch) | |
tree | 85d140462294a98385a44be2220a9c512767c7c0 /libc/sysdeps/linux/common/ppoll.c | |
parent | 768d1c431a13cdb4523c1da70fba2770deebe9cc (diff) | |
download | uClibc-alpine-03171505a2079ddbd58e9562dddf105349d9da5a.tar.bz2 uClibc-alpine-03171505a2079ddbd58e9562dddf105349d9da5a.tar.xz |
ppoll: get NULL from stddef.h
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/common/ppoll.c')
-rw-r--r-- | libc/sysdeps/linux/common/ppoll.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/ppoll.c b/libc/sysdeps/linux/common/ppoll.c index c9efe8d08..02c8013a5 100644 --- a/libc/sysdeps/linux/common/ppoll.c +++ b/libc/sysdeps/linux/common/ppoll.c @@ -20,10 +20,10 @@ #include <signal.h> #include <sys/syscall.h> #include <sys/poll.h> +#define __need_NULL +#include <stddef.h> #if defined __NR_ppoll && defined __UCLIBC_LINUX_SPECIFIC__ - - int ppoll(struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, const sigset_t *sigmask) @@ -39,5 +39,4 @@ ppoll(struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, return INLINE_SYSCALL(ppoll, 5, fds, nfds, timeout, sigmask, _NSIG / 8); } libc_hidden_def(ppoll) - #endif |