diff options
author | Thomas Petazzoni | 2013-10-16 19:59:45 +0200 |
---|---|---|
committer | Denys Vlasenko | 2013-10-16 19:59:45 +0200 |
commit | af4f0e48eccd1ab1abe361bb70960a8b73775722 (patch) | |
tree | eaf59dd3ce80c775f7ae72f831f6339c9501157a /include | |
parent | 28a209466f43c22db42dd02baa136ac7ac25069b (diff) | |
download | busybox-af4f0e48eccd1ab1abe361bb70960a8b73775722.zip busybox-af4f0e48eccd1ab1abe361bb70960a8b73775722.tar.gz |
libbb: use <poll.h> instead of <sys/poll.h>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index c965461..5827165 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -32,12 +32,12 @@ #include <stdarg.h> #include <stddef.h> #include <string.h> -/* There are two incompatible basename's, let not use them! */ +/* There are two incompatible basename's, let's not use them! */ /* See the dirname/basename man page for details */ #include <libgen.h> /* dirname,basename */ #undef basename #define basename dont_use_basename -#include <sys/poll.h> +#include <poll.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/socket.h> |