Skip to content

Commit

Permalink
Merge #12168: Trivial: Fix #include sys/fcntl.h to just fcntl.h (with…
Browse files Browse the repository at this point in the history
…out sys/)

648bdc8 Trivial: Fix #include sys/fcntl.h to just fcntl.h (without sys/) (Jan Sarenik)

Pull request description:

  http://pubs.opengroup.org/onlinepubs/009695399/functions/fcntl.html
  http://man7.org/linux/man-pages/man2/fcntl.2.html

Tree-SHA512: 82c7e0aba55f34a6fec60bdecb712b65c84422461454f0ae9eed5e1bb31bf585c5a65f49bbdd5a89feb59140a998ad6fcd5573ede123a12b2ba2ff677d95cc2b
  • Loading branch information
MarcoFalke committed Jan 13, 2018
2 parents b7450cd + 648bdc8 commit 45cf8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compat.h
Expand Up @@ -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>
Expand Down

0 comments on commit 45cf8a0

Please sign in to comment.