From b216f9ce43ef103e6afc44392afdc6763041c641 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Sat, 13 Jan 2018 09:32:33 -0500 Subject: [PATCH] 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 --- src/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat.h b/src/compat.h index b73c7478a41580..1f51aa7b176cfa 100644 --- a/src/compat.h +++ b/src/compat.h @@ -42,7 +42,7 @@ #include #include #else -#include +#include #include #include #include