Browse Source

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

648bdc8cc0 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
0.16
MarcoFalke 7 years ago
parent
commit
45cf8a03cb
No known key found for this signature in database
GPG Key ID: D2EA4850E7528B25
  1. 2
      src/compat.h

2
src/compat.h

@ -33,7 +33,7 @@ @@ -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>

Loading…
Cancel
Save