0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-09 10:43:19 -05:00

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

View file

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