From 43c1b625a693db933ea7d132718e2f77b9cdb180 Mon Sep 17 00:00:00 2001 From: Bartosz Sosnowski Date: Thu, 20 Apr 2017 15:41:25 +0200 Subject: [PATCH] src: add fcntl.h include to node.cc https://github.com/nodejs/node/pull/11863 adds _O_RDWR to node.cc which is defined in fcntl.h. This adds this include directly to node.cc. PR-URL: https://github.com/nodejs/node/pull/12540 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Gibson Fahnestock Reviewed-By: Anna Henningsen Reviewed-By: Myles Borins --- src/node.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node.cc b/src/node.cc index 748e1ee4f32e12..2d17bf99af9a71 100644 --- a/src/node.cc +++ b/src/node.cc @@ -73,6 +73,7 @@ #endif #include +#include . // _O_RDWR #include // PATH_MAX #include #include