diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-03-10 00:11:11 +0100 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-03-10 00:14:14 +0100 |
commit | ff4a9d381d2c77d1e074f9886c71003d5b7db25f (patch) | |
tree | 93507a7dc06d66551215030f6a6fc5cbb9dacb09 /src/node.h | |
parent | 8c02f9b7c844909cf5977d065b793c99eb0f9c45 (diff) | |
download | node-new-ff4a9d381d2c77d1e074f9886c71003d5b7db25f.tar.gz |
core: use proper #include directives
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node.h b/src/node.h index 703c74478e..788b65a964 100644 --- a/src/node.h +++ b/src/node.h @@ -58,13 +58,13 @@ # define SIGKILL 9 #endif -#include <uv.h> -#include <v8.h> +#include "uv.h" +#include "v8.h" #include <sys/types.h> /* struct stat */ #include <sys/stat.h> #include <assert.h> -#include <node_object_wrap.h> +#include "node_object_wrap.h" #if NODE_WANT_INTERNALS # include "node_internals.h" |