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/stream_wrap.cc | |
parent | 8c02f9b7c844909cf5977d065b793c99eb0f9c45 (diff) | |
download | node-new-ff4a9d381d2c77d1e074f9886c71003d5b7db25f.tar.gz |
core: use proper #include directives
Diffstat (limited to 'src/stream_wrap.cc')
-rw-r--r-- | src/stream_wrap.cc | 14 |
1 files changed, 7 insertions, 7 deletions
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() |