summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-06-18 02:35:14 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2012-06-18 02:35:14 +0200
commiteef57dddf4518e378551f2d016760ba2a0007ec2 (patch)
tree3df91b7d82805d419128b90530af86d79bf73571
parentbb2ce1a108b3c852a413c641bd021c9c25598d34 (diff)
downloadnode-eef57dddf4518e378551f2d016760ba2a0007ec2.tar.gz
core: use proper #include directives
-rw-r--r--src/cares_wrap.cc6
-rw-r--r--src/fs_event_wrap.cc4
-rw-r--r--src/handle_wrap.cc4
-rw-r--r--src/node.cc36
-rw-r--r--src/node.h6
-rw-r--r--src/node_buffer.cc6
-rw-r--r--src/node_buffer.h6
-rw-r--r--src/node_constants.cc6
-rw-r--r--src/node_constants.h4
-rw-r--r--src/node_crypto.cc10
-rw-r--r--src/node_crypto.h8
-rw-r--r--src/node_dtrace.cc2
-rw-r--r--src/node_dtrace.h4
-rw-r--r--src/node_file.cc2
-rw-r--r--src/node_file.h4
-rw-r--r--src/node_http_parser.cc8
-rw-r--r--src/node_http_parser.h2
-rw-r--r--src/node_io_watcher.cc6
-rw-r--r--src/node_io_watcher.h4
-rw-r--r--src/node_javascript.cc2
-rw-r--r--src/node_javascript.h2
-rw-r--r--src/node_main.cc2
-rw-r--r--src/node_object_wrap.h4
-rw-r--r--src/node_os.cc8
-rw-r--r--src/node_os.h4
-rw-r--r--src/node_script.cc4
-rw-r--r--src/node_script.h8
-rw-r--r--src/node_signal_watcher.cc2
-rw-r--r--src/node_signal_watcher.h6
-rw-r--r--src/node_stat_watcher.cc2
-rw-r--r--src/node_stat_watcher.h4
-rw-r--r--src/node_string.h2
-rw-r--r--src/pipe_wrap.cc12
-rw-r--r--src/pipe_wrap.h2
-rw-r--r--src/platform.h2
-rw-r--r--src/platform_darwin.cc2
-rw-r--r--src/platform_freebsd.cc2
-rw-r--r--src/platform_linux.cc2
-rw-r--r--src/platform_openbsd.cc2
-rw-r--r--src/platform_win32.cc6
-rw-r--r--src/process_wrap.cc6
-rw-r--r--src/stream_wrap.cc12
-rw-r--r--src/stream_wrap.h6
-rw-r--r--src/tcp_wrap.cc12
-rw-r--r--src/tcp_wrap.h2
-rw-r--r--src/timer_wrap.cc4
-rw-r--r--src/tty_wrap.cc10
-rw-r--r--src/udp_wrap.cc8
-rw-r--r--src/v8_typed_array.cc2
-rw-r--r--src/v8_typed_array.h2
50 files changed, 136 insertions, 136 deletions
diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc
index a881c25b0..c356daf72 100644
--- a/src/cares_wrap.cc
+++ b/src/cares_wrap.cc
@@ -20,9 +20,9 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <assert.h>
-#include <node.h>
-#include <req_wrap.h>
-#include <uv.h>
+#include "node.h"
+#include "req_wrap.h"
+#include "uv.h"
#include <string.h>
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc
index 48cdabc00..f0b5e9c60 100644
--- a/src/fs_event_wrap.cc
+++ b/src/fs_event_wrap.cc
@@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <handle_wrap.h>
+#include "node.h"
+#include "handle_wrap.h"
#include <stdlib.h>
diff --git a/src/handle_wrap.cc b/src/handle_wrap.cc
index eb6713eda..d9621b4c4 100644
--- a/src/handle_wrap.cc
+++ b/src/handle_wrap.cc
@@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <handle_wrap.h>
+#include "node.h"
+#include "handle_wrap.h"
namespace node {
diff --git a/src/node.cc b/src/node.cc
index 31594bb5a..66465d20e 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
+#include "node.h"
-#include <uv.h>
+#include "uv.h"
-#include <v8-debug.h>
+#include "v8-debug.h"
#ifdef HAVE_DTRACE
-# include <node_dtrace.h>
+# include "node_dtrace.h"
#endif
#include <locale.h>
@@ -57,7 +57,7 @@ typedef int mode_t;
#include <sys/types.h>
#if defined(__MINGW32__) || defined(_MSC_VER)
-# include <platform_win32.h> /* winapi_perror() */
+# include "platform_win32.h" /* winapi_perror() */
#endif
#ifdef __POSIX__
@@ -66,25 +66,25 @@ typedef int mode_t;
#endif
#include "platform.h"
-#include <node_buffer.h>
+#include "node_buffer.h"
#ifdef __POSIX__
-# include <node_io_watcher.h>
+# include "node_io_watcher.h"
#endif
-#include <node_file.h>
-#include <node_http_parser.h>
+#include "node_file.h"
+#include "node_http_parser.h"
#ifdef __POSIX__
-# include <node_signal_watcher.h>
-# include <node_stat_watcher.h>
+# include "node_signal_watcher.h"
+# include "node_stat_watcher.h"
#endif
-#include <node_constants.h>
-#include <node_javascript.h>
-#include <node_version.h>
-#include <node_string.h>
+#include "node_constants.h"
+#include "node_javascript.h"
+#include "node_version.h"
+#include "node_string.h"
#if HAVE_OPENSSL
-# include <node_crypto.h>
+# include "node_crypto.h"
#endif
-#include <node_script.h>
-#include <v8_typed_array.h>
+#include "node_script.h"
+#include "v8_typed_array.h"
using namespace v8;
diff --git a/src/node.h b/src/node.h
index 369206026..026206203 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 defined(_MSC_VER)
#undef interface
diff --git a/src/node_buffer.cc b/src/node_buffer.cc
index 51e5423e5..a7fddbf11 100644
--- a/src/node_buffer.cc
+++ b/src/node_buffer.cc
@@ -20,10 +20,10 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_buffer.h>
+#include "node.h"
+#include "node_buffer.h"
-#include <v8.h>
+#include "v8.h"
#include <assert.h>
#include <stdlib.h> // malloc, free
diff --git a/src/node_buffer.h b/src/node_buffer.h
index ef7cf4fd8..ade62b765 100644
--- a/src/node_buffer.h
+++ b/src/node_buffer.h
@@ -22,9 +22,9 @@
#ifndef NODE_BUFFER_H_
#define NODE_BUFFER_H_
-#include <node.h>
-#include <node_object_wrap.h>
-#include <v8.h>
+#include "node.h"
+#include "node_object_wrap.h"
+#include "v8.h"
#include <assert.h>
namespace node {
diff --git a/src/node_constants.cc b/src/node_constants.cc
index e924f9ed1..34c5d894f 100644
--- a/src/node_constants.cc
+++ b/src/node_constants.cc
@@ -19,9 +19,9 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_constants.h>
+#include "node_constants.h"
-#include <uv.h>
+#include "uv.h"
#include <errno.h>
#if !defined(_MSC_VER)
@@ -33,7 +33,7 @@
#include <sys/stat.h>
#if defined(__MINGW32__) || defined(_MSC_VER)
-# include <platform_win32.h>
+# include "platform_win32.h"
#endif
#if HAVE_OPENSSL
diff --git a/src/node_constants.h b/src/node_constants.h
index ac7dce00f..c75f40abf 100644
--- a/src/node_constants.h
+++ b/src/node_constants.h
@@ -22,8 +22,8 @@
#ifndef SRC_CONSTANTS_H_
#define SRC_CONSTANTS_H_
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
namespace node {
void DefineConstants(v8::Handle<v8::Object> target);
diff --git a/src/node_crypto.cc b/src/node_crypto.cc
index b2858f508..440019811 100644
--- a/src/node_crypto.cc
+++ b/src/node_crypto.cc
@@ -19,12 +19,12 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_crypto.h>
-#include <v8.h>
+#include "node_crypto.h"
+#include "v8.h"
-#include <node.h>
-#include <node_buffer.h>
-#include <node_root_certs.h>
+#include "node.h"
+#include "node_buffer.h"
+#include "node_root_certs.h"
#include <string.h>
#ifdef _MSC_VER
diff --git a/src/node_crypto.h b/src/node_crypto.h
index 6fa3de1df..1ee23c8a7 100644
--- a/src/node_crypto.h
+++ b/src/node_crypto.h
@@ -22,10 +22,10 @@
#ifndef SRC_NODE_CRYPTO_H_
#define SRC_NODE_CRYPTO_H_
-#include <node.h>
+#include "node.h"
-#include <node_object_wrap.h>
-#include <v8.h>
+#include "node_object_wrap.h"
+#include "v8.h"
#include <openssl/ssl.h>
#include <openssl/err.h>
@@ -38,7 +38,7 @@
#include <openssl/pkcs12.h>
#ifdef OPENSSL_NPN_NEGOTIATED
-#include <node_buffer.h>
+#include "node_buffer.h"
#endif
#define EVP_F_EVP_DECRYPTFINAL 101
diff --git a/src/node_dtrace.cc b/src/node_dtrace.cc
index fc8201592..431a4ab31 100644
--- a/src/node_dtrace.cc
+++ b/src/node_dtrace.cc
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_dtrace.h>
+#include "node_dtrace.h"
#include <string.h>
#ifdef HAVE_DTRACE
diff --git a/src/node_dtrace.h b/src/node_dtrace.h
index f10b26783..5374ab60c 100644
--- a/src/node_dtrace.h
+++ b/src/node_dtrace.h
@@ -22,8 +22,8 @@
#ifndef NODE_DTRACE_H_
#define NODE_DTRACE_H_
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
extern "C" {
diff --git a/src/node_file.cc b/src/node_file.cc
index 0c0555e7e..befe346f2 100644
--- a/src/node_file.cc
+++ b/src/node_file.cc
@@ -37,7 +37,7 @@
#if defined(__MINGW32__) || defined(_MSC_VER)
# include <io.h>
-# include <platform_win32.h>
+# include "platform_win32.h"
#endif
namespace node {
diff --git a/src/node_file.h b/src/node_file.h
index e98b115d4..5757e732b 100644
--- a/src/node_file.h
+++ b/src/node_file.h
@@ -22,8 +22,8 @@
#ifndef SRC_FILE_H_
#define SRC_FILE_H_
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
namespace node {
diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc
index bc3da82b2..7e78790d0 100644
--- a/src/node_http_parser.cc
+++ b/src/node_http_parser.cc
@@ -19,11 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_http_parser.h>
+#include "node_http_parser.h"
-#include <v8.h>
-#include <node.h>
-#include <node_buffer.h>
+#include "v8.h"
+#include "node.h"
+#include "node_buffer.h"
#include <http_parser.h>
diff --git a/src/node_http_parser.h b/src/node_http_parser.h
index 456a00083..e4f30130f 100644
--- a/src/node_http_parser.h
+++ b/src/node_http_parser.h
@@ -22,7 +22,7 @@
#ifndef NODE_HTTP_PARSER
#define NODE_HTTP_PARSER
-#include <v8.h>
+#include "v8.h"
namespace node {
diff --git a/src/node_io_watcher.cc b/src/node_io_watcher.cc
index 4854a8fa9..3d1ab51fa 100644
--- a/src/node_io_watcher.cc
+++ b/src/node_io_watcher.cc
@@ -19,10 +19,10 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_io_watcher.h>
+#include "node_io_watcher.h"
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
#include <assert.h>
diff --git a/src/node_io_watcher.h b/src/node_io_watcher.h
index 81014feb3..d14289c86 100644
--- a/src/node_io_watcher.h
+++ b/src/node_io_watcher.h
@@ -22,8 +22,8 @@
#ifndef NODE_IO_H_
#define NODE_IO_H_
-#include <node_object_wrap.h>
-#include <uv-private/ev.h>
+#include "node_object_wrap.h"
+#include "uv-private/ev.h"
namespace node {
diff --git a/src/node_javascript.cc b/src/node_javascript.cc
index 2aef03501..49695c082 100644
--- a/src/node_javascript.cc
+++ b/src/node_javascript.cc
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <v8.h>
+#include "v8.h"
#include "node.h"
#include "node_natives.h"
#include "node_string.h"
diff --git a/src/node_javascript.h b/src/node_javascript.h
index 58e5010d6..2cfa97954 100644
--- a/src/node_javascript.h
+++ b/src/node_javascript.h
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <v8.h>
+#include "v8.h"
namespace node {
diff --git a/src/node_main.cc b/src/node_main.cc
index dba8b6920..6471551d2 100644
--- a/src/node_main.cc
+++ b/src/node_main.cc
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
+#include "node.h"
#ifdef _WIN32
int wmain(int argc, wchar_t *wargv[]) {
diff --git a/src/node_object_wrap.h b/src/node_object_wrap.h
index 0ead639b6..311f3f0f4 100644
--- a/src/node_object_wrap.h
+++ b/src/node_object_wrap.h
@@ -22,8 +22,8 @@
#ifndef object_wrap_h
#define object_wrap_h
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
#include <assert.h>
namespace node {
diff --git a/src/node_os.cc b/src/node_os.cc
index 287467531..910d5ddd6 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -20,11 +20,11 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_os.h>
+#include "node.h"
+#include "node_os.h"
#include "platform.h"
-#include <v8.h>
+#include "v8.h"
#include <errno.h>
#include <string.h>
@@ -32,7 +32,7 @@
#ifdef __MINGW32__
# include <io.h>
-# include <platform_win32.h>
+# include "platform_win32.h"
#endif
#ifdef __POSIX__
diff --git a/src/node_os.h b/src/node_os.h
index 596d268e7..25ff71eee 100644
--- a/src/node_os.h
+++ b/src/node_os.h
@@ -22,8 +22,8 @@
#ifndef node_os_h
#define node_os_h
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
namespace node {
diff --git a/src/node_script.cc b/src/node_script.cc
index 9fe5d85f9..3f57bc447 100644
--- a/src/node_script.cc
+++ b/src/node_script.cc
@@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_script.h>
+#include "node.h"
+#include "node_script.h"
#include <assert.h>
namespace node {
diff --git a/src/node_script.h b/src/node_script.h
index 5074abf2d..047829f53 100644
--- a/src/node_script.h
+++ b/src/node_script.h
@@ -22,10 +22,10 @@
#ifndef node_script_h
#define node_script_h
-#include <node.h>
-#include <node_object_wrap.h>
-#include <v8.h>
-#include <uv.h>
+#include "node.h"
+#include "node_object_wrap.h"
+#include "v8.h"
+#include "uv.h"
namespace node {
diff --git a/src/node_signal_watcher.cc b/src/node_signal_watcher.cc
index 1027b3efd..a0b57e0d2 100644
--- a/src/node_signal_watcher.cc
+++ b/src/node_signal_watcher.cc
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_signal_watcher.h>
+#include "node_signal_watcher.h"
#include <assert.h>
namespace node {
diff --git a/src/node_signal_watcher.h b/src/node_signal_watcher.h
index 63fe1c796..f46022bd3 100644
--- a/src/node_signal_watcher.h
+++ b/src/node_signal_watcher.h
@@ -22,9 +22,9 @@
#ifndef NODE_SIGNAL_WATCHER_H_
#define NODE_SIGNAL_WATCHER_H_
-#include <node.h>
-#include <v8.h>
-#include <uv-private/ev.h>
+#include "node.h"
+#include "v8.h"
+#include "uv-private/ev.h"
namespace node {
diff --git a/src/node_stat_watcher.cc b/src/node_stat_watcher.cc
index fd4d68a5c..5b06966b9 100644
--- a/src/node_stat_watcher.cc
+++ b/src/node_stat_watcher.cc
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node_stat_watcher.h>
+#include "node_stat_watcher.h"
#include <assert.h>
#include <string.h>
diff --git a/src/node_stat_watcher.h b/src/node_stat_watcher.h
index b220f20b2..2b2d1331d 100644
--- a/src/node_stat_watcher.h
+++ b/src/node_stat_watcher.h
@@ -22,8 +22,8 @@
#ifndef NODE_STAT_WATCHER_H_
#define NODE_STAT_WATCHER_H_
-#include <node.h>
-#include <uv-private/ev.h>
+#include "node.h"
+#include "uv-private/ev.h"
namespace node {
diff --git a/src/node_string.h b/src/node_string.h
index 5625f22db..b4a0a9b86 100644
--- a/src/node_string.h
+++ b/src/node_string.h
@@ -22,7 +22,7 @@
#ifndef SRC_NODE_STRING_H_
#define SRC_NODE_STRING_H_
-#include <v8.h>
+#include "v8.h"
namespace node {
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index b062b40f4..4cd950e02 100644
--- a/src/pipe_wrap.cc
+++ b/src/pipe_wrap.cc
@@ -19,12 +19,12 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_buffer.h>
-#include <req_wrap.h>
-#include <handle_wrap.h>
-#include <stream_wrap.h>
-#include <pipe_wrap.h>
+#include "node.h"
+#include "node_buffer.h"
+#include "req_wrap.h"
+#include "handle_wrap.h"
+#include "stream_wrap.h"
+#include "pipe_wrap.h"
#define UNWRAP \
assert(!args.Holder().IsEmpty()); \
diff --git a/src/pipe_wrap.h b/src/pipe_wrap.h
index f4c9291ae..12682d7e2 100644
--- a/src/pipe_wrap.h
+++ b/src/pipe_wrap.h
@@ -21,7 +21,7 @@
#ifndef PIPE_WRAP_H_
#define PIPE_WRAP_H_
-#include <stream_wrap.h>
+#include "stream_wrap.h"
namespace node {
diff --git a/src/platform.h b/src/platform.h
index e89ebfaa6..e40381935 100644
--- a/src/platform.h
+++ b/src/platform.h
@@ -22,7 +22,7 @@
#ifndef NODE_PLATFORM_H_
#define NODE_PLATFORM_H_
-#include <v8.h>
+#include "v8.h"
namespace node {
diff --git a/src/platform_darwin.cc b/src/platform_darwin.cc
index a196669eb..d4804386f 100644
--- a/src/platform_darwin.cc
+++ b/src/platform_darwin.cc
@@ -22,7 +22,7 @@
#include "node.h"
#include "platform.h"
-#include <v8.h>
+#include "v8.h"
#include <mach/task.h>
#include <mach/mach.h>
diff --git a/src/platform_freebsd.cc b/src/platform_freebsd.cc
index 5b0e01e88..e1cb6f73c 100644
--- a/src/platform_freebsd.cc
+++ b/src/platform_freebsd.cc
@@ -22,7 +22,7 @@
#include "node.h"
#include "platform.h"
-#include <v8.h>
+#include "v8.h"
#include <stdlib.h>
#include <kvm.h>
diff --git a/src/platform_linux.cc b/src/platform_linux.cc
index 287ed3e30..63e33b235 100644
--- a/src/platform_linux.cc
+++ b/src/platform_linux.cc
@@ -22,7 +22,7 @@
#include "node.h"
#include "platform.h"
-#include <v8.h>
+#include "v8.h"
#include <sys/param.h> // for MAXPATHLEN
#include <unistd.h> // getpagesize, sysconf
diff --git a/src/platform_openbsd.cc b/src/platform_openbsd.cc
index 9399ad7ac..1bc40658b 100644
--- a/src/platform_openbsd.cc
+++ b/src/platform_openbsd.cc
@@ -22,7 +22,7 @@
#include "node.h"
#include "platform.h"
-#include <v8.h>
+#include "v8.h"
#include <stdlib.h>
#include <kvm.h>
diff --git a/src/platform_win32.cc b/src/platform_win32.cc
index f43c24337..fdfe8a6d7 100644
--- a/src/platform_win32.cc
+++ b/src/platform_win32.cc
@@ -20,10 +20,10 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
+#include "node.h"
#include "platform.h"
-#include <v8.h>
+#include "v8.h"
#include <errno.h>
#include <stdlib.h>
@@ -32,7 +32,7 @@
#include <unistd.h> // getpagesize
#endif
-#include <platform_win32.h>
+#include "platform_win32.h"
#include <psapi.h>
namespace node {
diff --git a/src/process_wrap.cc b/src/process_wrap.cc
index 4c9eb42c0..721c2d6ee 100644
--- a/src/process_wrap.cc
+++ b/src/process_wrap.cc
@@ -19,9 +19,9 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <handle_wrap.h>
-#include <pipe_wrap.h>
+#include "node.h"
+#include "handle_wrap.h"
+#include "pipe_wrap.h"
#include <string.h>
#include <stdlib.h>
diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc
index b36304979..7e53ff812 100644
--- a/src/stream_wrap.cc
+++ b/src/stream_wrap.cc
@@ -19,12 +19,12 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_buffer.h>
-#include <handle_wrap.h>
-#include <stream_wrap.h>
-#include <tcp_wrap.h>
-#include <req_wrap.h>
+#include "node.h"
+#include "node_buffer.h"
+#include "handle_wrap.h"
+#include "stream_wrap.h"
+#include "tcp_wrap.h"
+#include "req_wrap.h"
namespace node {
diff --git a/src/stream_wrap.h b/src/stream_wrap.h
index 045420991..278fda782 100644
--- a/src/stream_wrap.h
+++ b/src/stream_wrap.h
@@ -22,9 +22,9 @@
#ifndef STREAM_WRAP_H_
#define STREAM_WRAP_H_
-#include <v8.h>
-#include <node.h>
-#include <handle_wrap.h>
+#include "v8.h"
+#include "node.h"
+#include "handle_wrap.h"
namespace node {
diff --git a/src/tcp_wrap.cc b/src/tcp_wrap.cc
index 14e6d3ed6..3e5e49146 100644
--- a/src/tcp_wrap.cc
+++ b/src/tcp_wrap.cc
@@ -19,12 +19,12 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_buffer.h>
-#include <req_wrap.h>
-#include <handle_wrap.h>
-#include <stream_wrap.h>
-#include <tcp_wrap.h>
+#include "node.h"
+#include "node_buffer.h"
+#include "req_wrap.h"
+#include "handle_wrap.h"
+#include "stream_wrap.h"
+#include "tcp_wrap.h"
#include <stdlib.h>
diff --git a/src/tcp_wrap.h b/src/tcp_wrap.h
index 98ebb5045..26e061f48 100644
--- a/src/tcp_wrap.h
+++ b/src/tcp_wrap.h
@@ -21,7 +21,7 @@
#ifndef TCP_WRAP_H_
#define TCP_WRAP_H_
-#include <stream_wrap.h>
+#include "stream_wrap.h"
namespace node {
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index 470c2d6b9..273f8265f 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <handle_wrap.h>
+#include "node.h"
+#include "handle_wrap.h"
#define UNWRAP \
assert(!args.Holder().IsEmpty()); \
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index 486c2a70b..8647ea0b9 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -19,11 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_buffer.h>
-#include <req_wrap.h>
-#include <handle_wrap.h>
-#include <stream_wrap.h>
+#include "node.h"
+#include "node_buffer.h"
+#include "req_wrap.h"
+#include "handle_wrap.h"
+#include "stream_wrap.h"
namespace node {
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 07d8d3143..1a854a4ff 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -19,11 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_buffer.h>
+#include "node.h"
+#include "node_buffer.h"
-#include <req_wrap.h>
-#include <handle_wrap.h>
+#include "req_wrap.h"
+#include "handle_wrap.h"
#include <stdlib.h>
diff --git a/src/v8_typed_array.cc b/src/v8_typed_array.cc
index b9b55acf5..e0db76b1a 100644
--- a/src/v8_typed_array.cc
+++ b/src/v8_typed_array.cc
@@ -22,7 +22,7 @@
#include <stdlib.h> // calloc, etc
#include <string.h> // memmove
-#include <v8.h>
+#include "v8.h"
#include "v8_typed_array.h"
diff --git a/src/v8_typed_array.h b/src/v8_typed_array.h
index a95b29a50..dc518ccdd 100644
--- a/src/v8_typed_array.h
+++ b/src/v8_typed_array.h
@@ -22,7 +22,7 @@
#ifndef V8_TYPED_ARRAY_H_
#define V8_TYPED_ARRAY_H_
-#include <v8.h>
+#include "v8.h"
namespace v8_typed_array {