From 8c340364745615df5903db0d5113768c14615b9f 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. --- src/node.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node.cc b/src/node.cc index 4913147619e8a6..1874e3661c1ceb 100644 --- a/src/node.cc +++ b/src/node.cc @@ -80,6 +80,7 @@ #include #include #include +#include #include #include