summaryrefslogtreecommitdiff
path: root/src/module_wrap.cc
diff options
context:
space:
mode:
authorRefael Ackermann <refack@gmail.com>2019-02-25 17:27:19 -0500
committerRefael Ackermann <refack@gmail.com>2019-03-12 09:57:19 -0400
commitf2064dfc1fee2daa0537bc27d79d5aa0f734faaf (patch)
tree8e7c60ae471af748fe710193a3662d13de25c3fe /src/module_wrap.cc
parent902998190a55d6915b881936f6dd5b6e9cca6ad8 (diff)
downloadandroid-node-v8-f2064dfc1fee2daa0537bc27d79d5aa0f734faaf.tar.gz
android-node-v8-f2064dfc1fee2daa0537bc27d79d5aa0f734faaf.tar.bz2
android-node-v8-f2064dfc1fee2daa0537bc27d79d5aa0f734faaf.zip
src: de-lint header usage
PR-URL: https://github.com/nodejs/node/pull/26306 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Diffstat (limited to 'src/module_wrap.cc')
-rw-r--r--src/module_wrap.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/module_wrap.cc b/src/module_wrap.cc
index 3d55d12cc3..d311f7caca 100644
--- a/src/module_wrap.cc
+++ b/src/module_wrap.cc
@@ -1,6 +1,3 @@
-#include <algorithm>
-#include <climits> // PATH_MAX
-#include <sys/stat.h> // S_IFDIR
#include "module_wrap.h"
#include "env.h"
@@ -10,6 +7,11 @@
#include "node_contextify.h"
#include "node_watchdog.h"
+#include <sys/stat.h> // S_IFDIR
+
+#include <algorithm>
+#include <climits> // PATH_MAX
+
namespace node {
namespace loader {