Trivial: Fix #include sys/fcntl.h to just fcntl.h (without sys/)

http://pubs.opengroup.org/onlinepubs/009695399/functions/fcntl.html
http://man7.org/linux/man-pages/man2/fcntl.2.html
This commit is contained in:
Jan Sarenik 2018-01-12 11:21:47 +00:00
parent 0910cbe4ef
commit 648bdc8cc0
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
#include <ws2tcpip.h> #include <ws2tcpip.h>
#include <stdint.h> #include <stdint.h>
#else #else
#include <sys/fcntl.h> #include <fcntl.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <sys/select.h> #include <sys/select.h>
#include <sys/socket.h> #include <sys/socket.h>