summaryrefslogtreecommitdiff
path: root/include/poll.h
diff options
context:
space:
mode:
authorsin2015-03-11 11:18:31 +0000
committersin2015-03-11 11:18:31 +0000
commit14af218559243c1e16cf871e1823f1a5d8cece9f (patch)
tree86c5e51f27b6ba5b65d33429135ea5893445102e /include/poll.h
parent8604f138c55ab4904a2fd9b7edce2b688c70e6c0 (diff)
Ignore C++ for now
It is not legal to override standard functions using macros in C++. We may have to revisit this in the future.
Diffstat (limited to 'include/poll.h')
-rw-r--r--include/poll.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/poll.h b/include/poll.h
index ac79695..5e27850 100644
--- a/include/poll.h
+++ b/include/poll.h
@@ -5,9 +5,7 @@
5 5
6#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 6#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0
7 7
8#ifdef __cplusplus 8#ifndef __cplusplus
9extern "C" {
10#endif
11 9
12static inline __attribute__ ((always_inline)) 10static inline __attribute__ ((always_inline))
13int 11int
@@ -42,8 +40,6 @@ __fortify_ppoll(struct pollfd *fds, nfds_t nfds,
42#define ppoll(fds, nfds, timeout, mask) __fortify_ppoll(fds, nfds, timeout, mask) 40#define ppoll(fds, nfds, timeout, mask) __fortify_ppoll(fds, nfds, timeout, mask)
43#endif 41#endif
44 42
45#ifdef __cplusplus
46}
47#endif 43#endif
48 44
49#endif 45#endif