Browse Source

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 <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
v6
Bartosz Sosnowski 8 years ago
committed by Myles Borins
parent
commit
43c1b625a6
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 1
      src/node.cc

1
src/node.cc

@ -73,6 +73,7 @@
#endif
#include <errno.h>
#include <fcntl.h>. // _O_RDWR
#include <limits.h> // PATH_MAX
#include <locale.h>
#include <signal.h>

Loading…
Cancel
Save