Skip to content

Commit

Permalink
src: add fcntl.h include to node.cc
Browse files Browse the repository at this point in the history
nodejs#11863 adds _O_RDWR to node.cc
which is defined in fcntl.h. This adds this include directly to
node.cc.
  • Loading branch information
bzoz committed Apr 20, 2017
1 parent bb041ea commit 8c34036
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <fcntl.h>

#include <string>
#include <vector>
Expand Down

0 comments on commit 8c34036

Please sign in to comment.