summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 a881c25b07..c356daf724 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 48cdabc00e..f0b5e9c603 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 eb6713edad..d9621b4c4b 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 525a9c0348..4281028197 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 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"
diff --git a/src/node_buffer.cc b/src/node_buffer.cc
index 12fe1e0962..882fa384a5 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 abfafa3264..c36f20b2f0 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 25ad02f8f9..7999f51ea4 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 ac7dce00f6..c75f40abf7 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 0403a03614..44bff41a79 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 87a5340147..9fcddf0133 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 fc82015922..431a4ab319 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 f10b26783f..5374ab60c0 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 e98b115d40..5757e732b5 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 1f59c0b070..fdcb0f08a2 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 456a000831..e4f30130f6 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 4854a8fa9a..3d1ab51fa2 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 81014feb39..d14289c867 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 2aef03501b..49695c0824 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 58e5010d65..2cfa979547 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 dba8b69203..6471551d2c 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 0ead639b64..311f3f0f42 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 b854961132..c09458e60d 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 596d268e70..25ff71eee3 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 c6db76ea5e..8f35b5a13f 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 5074abf2d3..047829f539 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 1027b3efd1..a0b57e0d20 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 63fe1c7966..f46022bd33 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 fd4d68a5cc..5b06966b96 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 b220f20b2c..2b2d1331de 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 5625f22dbe..b4a0a9b86a 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 a27fcef375..5d63116783 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 6805294202..d2379a59a7 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 5551dd7a8d..d5241e08f3 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 6600a044c8..69ac7fb035 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 cb4d4d6e40..9940829585 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 045420991c..278fda7827 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 14e6d3ed66..3e5e491463 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 98ebb50458..26e061f483 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 470c2d6b98..273f8265f4 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 486c2a70b4..8647ea0b9c 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 789366cbef..16857ce0ec 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 a95b29a50b..dc518ccdd7 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 {