diff options
author | Gabriele Svelto <gabriele.svelto@gmail.com> | 2012-05-08 19:11:29 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-05-13 18:12:24 +0200 |
commit | a03730632e73d7809b352eb43007036f11deb746 (patch) | |
tree | 9f30ea5b4d3cbda8181d8dcd9bf4ee10571d3c26 /src/poll.hpp | |
parent | ef5ec121148eaf9d29fc1e8219f5804ba078191b (diff) |
Move inclusion of select() and poll() headers to a single place
Signed-off-by: Gabriele Svelto <gabriele.svelto@gmail.com>
Diffstat (limited to 'src/poll.hpp')
-rw-r--r-- | src/poll.hpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/poll.hpp b/src/poll.hpp index 879f4ee..2dd67f4 100644 --- a/src/poll.hpp +++ b/src/poll.hpp @@ -28,20 +28,6 @@ #include <stddef.h> -#if HAVE_SYS_TYPES -# include <sys/types.h> -#endif - -#if HAVE_SYS_SELECT_H -# include <sys/select.h> -#endif - -#if HAVE_POLL_H -# include <poll.h> -#elif HAVE_SYS_POLL_H -# include <sys/poll.h> -#endif - #include <vector> #include "fd.hpp" |