summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-03-10 00:11:11 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2012-03-10 00:14:14 +0100
commitff4a9d381d2c77d1e074f9886c71003d5b7db25f (patch)
tree93507a7dc06d66551215030f6a6fc5cbb9dacb09 /src
parent8c02f9b7c844909cf5977d065b793c99eb0f9c45 (diff)
downloadnode-ff4a9d381d2c77d1e074f9886c71003d5b7db25f.tar.gz
core: use proper #include directives
Diffstat (limited to 'src')
-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.cc34
-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.cc4
-rw-r--r--src/node_constants.h4
-rw-r--r--src/node_crypto.cc12
-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.h4
-rw-r--r--src/node_http_parser.cc10
-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.cc6
-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/node_zlib.cc6
-rw-r--r--src/pipe_wrap.cc12
-rw-r--r--src/pipe_wrap.h2
-rw-r--r--src/process_wrap.cc6
-rw-r--r--src/stream_wrap.cc14
-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.h2
43 files changed, 129 insertions, 129 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 525a9c034..428102819 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>
@@ -61,25 +61,25 @@ typedef int mode_t;
# include <grp.h> /* getgrnam() */
#endif
-#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 703c74478..788b65a96 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"
diff --git a/src/node_buffer.cc b/src/node_buffer.cc
index 12fe1e096..882fa384a 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 abfafa326..c36f20b2f 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 25ad02f8f..7999f51ea 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)
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 0403a0361..44bff41a7 100644
--- a/src/node_crypto.cc
+++ b/src/node_crypto.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_crypto.h>
-#include <node_crypto_groups.h>
-#include <v8.h>
+#include "node_crypto.h"
+#include "node_crypto_groups.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 87a534014..9fcddf013 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>
@@ -37,7 +37,7 @@
#include <openssl/rand.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.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 1f59c0b07..fdcb0f08a 100644
--- a/src/node_http_parser.cc
+++ b/src/node_http_parser.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_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>
+#include "http_parser.h"
#include <string.h> /* strdup() */
#if !defined(_MSC_VER)
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 b85496113..c09458e60 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -20,10 +20,10 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <node.h>
-#include <node_os.h>
+#include "node.h"
+#include "node_os.h"
-#include <v8.h>
+#include "v8.h"
#include <errno.h>
#include <string.h>
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 c6db76ea5..8f35b5a13 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/node_zlib.cc b/src/node_zlib.cc
index a27fcef37..5d6311678 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -20,15 +20,15 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include <v8.h>
+#include "v8.h"
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <zlib.h>
-#include <node.h>
-#include <node_buffer.h>
+#include "node.h"
+#include "node_buffer.h"
namespace node {
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index 680529420..d2379a59a 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 5551dd7a8..d5241e08f 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/process_wrap.cc b/src/process_wrap.cc
index 6600a044c..69ac7fb03 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 cb4d4d6e4..994082958 100644
--- a/src/stream_wrap.cc
+++ b/src/stream_wrap.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_buffer.h>
-#include <handle_wrap.h>
-#include <stream_wrap.h>
-#include <pipe_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 "pipe_wrap.h"
+#include "tcp_wrap.h"
+#include "req_wrap.h"
#include <stdlib.h> // abort()
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 789366cbe..16857ce0e 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.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 {