diff options
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/node.h b/src/node.h index 12a5d4cbc5..f41495c043 100644 --- a/src/node.h +++ b/src/node.h @@ -58,14 +58,7 @@ # define SIGKILL 9 #endif -#include "node_version.h" /* NODE_MODULE_VERSION */ -#include "uv.h" -#include "v8.h" - -#include <sys/types.h> /* struct stat */ -#include <sys/stat.h> -#include <assert.h> - +#include "node_version.h" // NODE_MODULE_VERSION #include "node_object_wrap.h" // Forward-declare these functions now to stop MSVS from becoming @@ -99,9 +92,14 @@ NODE_EXTERN v8::Handle<v8::Value> MakeCallback( } // namespace node #if NODE_WANT_INTERNALS -# include "node_internals.h" +#include "node_internals.h" #endif +#include "uv.h" +#include "v8.h" + +#include <assert.h> + #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY_HELPER(n) #n |