Skip to content

Commit 45cf8a0

Browse files
author
MarcoFalke
committed
Merge #12168: Trivial: Fix #include sys/fcntl.h to just fcntl.h (without 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
2 parents b7450cd + 648bdc8 commit 45cf8a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include <ws2tcpip.h>
3434
#include <stdint.h>
3535
#else
36-
#include <sys/fcntl.h>
36+
#include <fcntl.h>
3737
#include <sys/mman.h>
3838
#include <sys/select.h>
3939
#include <sys/socket.h>

0 commit comments

Comments
 (0)