diff options
author | Jan Sarenik <jasan@jasan.tk> | 2018-01-12 11:21:47 +0000 |
---|---|---|
committer | Jan Sarenik <jasan@jasan.tk> | 2018-01-12 11:22:54 +0000 |
commit | 648bdc8cc09c85748967b86347bbc7825e339d5f (patch) | |
tree | 6c07b4941e87cb4548befc641f819a16c6353a54 /src/compat.h | |
parent | 0910cbe4ef31eb95fd76c7c2f820419fe64a3150 (diff) |
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
Diffstat (limited to 'src/compat.h')
-rw-r--r-- | src/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat.h b/src/compat.h index 65e9683e2f..aae84b1181 100644 --- a/src/compat.h +++ b/src/compat.h @@ -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> |