OSDN Git Service

Bernd Schmidt writes: The following patch is needed for libc to be able to emulate...
authorMike Frysinger <vapier@gentoo.org>
Sun, 18 Mar 2007 21:37:44 +0000 (21:37 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sun, 18 Mar 2007 21:37:44 +0000 (21:37 -0000)
libc/sysdeps/linux/common/ppoll.c

index 3c4d341..ab96e8b 100644 (file)
@@ -22,6 +22,8 @@
 
 #ifdef __NR_ppoll
 
+libc_hidden_proto(ppoll)
+
 # define __NR___libc_ppoll __NR_ppoll
 static inline
 _syscall4(int, __libc_ppoll, struct pollfd *, fds,
@@ -43,5 +45,6 @@ ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout,
 
   return __libc_ppoll(fds, nfds, timeout, sigmask);
 }
+libc_hidden_def(ppoll)
 
 #endif