From 520f876711f70ee3df858aaa136b28eed39c97c0 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 1093caeed7c131..db3c8d96eec1fa 100644 --- a/src/node.cc +++ b/src/node.cc @@ -53,6 +53,7 @@ #endif #include +#include . // _O_RDWR #include // PATH_MAX #include #include