mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2025-09-02 05:36:57 +00:00
fix incorrect poll.h inclusion
sys/poll.h is a glibc legacy alias for poll.h. the latter is specified by POSIX, the former not. on glibc one of them just includes the other so it doesnt hurt.
This commit is contained in:
@ -27,7 +27,7 @@
|
|||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/poll.h>
|
#include <poll.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
Reference in New Issue
Block a user