summaryrefslogtreecommitdiffstats
path: root/include/sys/poll.h
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2008-11-26 15:45:55 +0000
committerCarmelo Amoroso <carmelo.amoroso@st.com>2008-11-26 15:45:55 +0000
commit249f9ff259992908829f9d06a0b4688cf21ea00e (patch)
tree292da38d7e4d88f681732b581dc3d93a97e2ab4f /include/sys/poll.h
parentce48bd0f2a31f63ac7fed36c756b60ce8106b27f (diff)
downloaduClibc-alpine-249f9ff259992908829f9d06a0b4688cf21ea00e.tar.bz2
uClibc-alpine-249f9ff259992908829f9d06a0b4688cf21ea00e.tar.xz
Synch with trunk @ 24157
Step 11: More libc_hidden_proto removal
Diffstat (limited to 'include/sys/poll.h')
-rw-r--r--include/sys/poll.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sys/poll.h b/include/sys/poll.h
index a298dac15..13b913494 100644
--- a/include/sys/poll.h
+++ b/include/sys/poll.h
@@ -58,6 +58,7 @@ __BEGIN_DECLS
This function is a cancellation point and therefore not marked with
__THROW. */
extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout);
+libc_hidden_proto(poll)
#if defined __USE_GNU && defined __UCLIBC_LINUX_SPECIFIC__
/* Like poll, but before waiting the threads signal mask is replaced
@@ -69,6 +70,7 @@ extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout);
extern int ppoll (struct pollfd *__fds, nfds_t __nfds,
__const struct timespec *__timeout,
__const __sigset_t *__ss);
+libc_hidden_proto(ppoll)
#endif
__END_DECLS