diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-02-12 14:06:32 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-02-12 20:47:38 +0100 |
commit | 0a6f50c0afdfc434b492493bd9efab20cbee8623 (patch) | |
tree | 46f6a16167472de91b2773685cf9506f0576e493 /src/bus-proxyd | |
parent | c1ff5570f4a04bb9aedea444c12dce81679224ec (diff) |
include <poll.h> instead of <sys/poll.h>
include-what-you-use automatically does this and it makes finding
unnecessary harder to spot. The only content of poll.h is a include
of sys/poll.h so should be harmless.
Diffstat (limited to 'src/bus-proxyd')
-rw-r--r-- | src/bus-proxyd/bus-proxyd.c | 2 | ||||
-rw-r--r-- | src/bus-proxyd/proxy.c | 2 | ||||
-rw-r--r-- | src/bus-proxyd/stdio-bridge.c | 2 | ||||
-rw-r--r-- | src/bus-proxyd/test-bus-xml-policy.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/bus-proxyd/bus-proxyd.c b/src/bus-proxyd/bus-proxyd.c index 8cc4412034..e07761aeb9 100644 --- a/src/bus-proxyd/bus-proxyd.c +++ b/src/bus-proxyd/bus-proxyd.c @@ -29,7 +29,7 @@ #include <unistd.h> #include <string.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/prctl.h> #include <stddef.h> #include <getopt.h> diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c index bd02ee12b3..2a3de70958 100644 --- a/src/bus-proxyd/proxy.c +++ b/src/bus-proxyd/proxy.c @@ -29,7 +29,7 @@ #include <unistd.h> #include <string.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <stddef.h> #include <getopt.h> diff --git a/src/bus-proxyd/stdio-bridge.c b/src/bus-proxyd/stdio-bridge.c index 6fb83033d9..434a989bfc 100644 --- a/src/bus-proxyd/stdio-bridge.c +++ b/src/bus-proxyd/stdio-bridge.c @@ -28,7 +28,7 @@ #include <unistd.h> #include <string.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <stddef.h> #include <getopt.h> diff --git a/src/bus-proxyd/test-bus-xml-policy.c b/src/bus-proxyd/test-bus-xml-policy.c index 4b07747e1e..421487e038 100644 --- a/src/bus-proxyd/test-bus-xml-policy.c +++ b/src/bus-proxyd/test-bus-xml-policy.c @@ -26,7 +26,7 @@ #include <unistd.h> #include <string.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <stddef.h> #include <getopt.h> |