aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node
diff options
context:
space:
mode:
authorGravatar Alexander Staubo <alex@bengler.no>2015-04-05 01:09:37 -0400
committerGravatar Alexander Staubo <alex@bengler.no>2015-04-05 01:27:58 -0400
commit3f670f4f26c2190dacea0af0c74538f32af387b7 (patch)
tree285dde8dced77ce8feb70d836cc2b4e47cd6dc30 /src/node
parent6c963cd784e555a5294cfb9609785224cacd0a68 (diff)
Remove unused references to malloc.h (which is non-standard, Linux-specific and generally deprecated; use <cstdlib> instead).
Diffstat (limited to 'src/node')
-rw-r--r--src/node/ext/byte_buffer.cc1
-rw-r--r--src/node/ext/channel.cc2
-rw-r--r--src/node/ext/server.cc2
3 files changed, 0 insertions, 5 deletions
diff --git a/src/node/ext/byte_buffer.cc b/src/node/ext/byte_buffer.cc
index 82b54b518c..01bd92ea52 100644
--- a/src/node/ext/byte_buffer.cc
+++ b/src/node/ext/byte_buffer.cc
@@ -32,7 +32,6 @@
*/
#include <string.h>
-#include <malloc.h>
#include <node.h>
#include <nan.h>
diff --git a/src/node/ext/channel.cc b/src/node/ext/channel.cc
index 787e274973..d37bf763dd 100644
--- a/src/node/ext/channel.cc
+++ b/src/node/ext/channel.cc
@@ -31,8 +31,6 @@
*
*/
-#include <malloc.h>
-
#include <vector>
#include <node.h>
diff --git a/src/node/ext/server.cc b/src/node/ext/server.cc
index e47bac833b..3c2396b810 100644
--- a/src/node/ext/server.cc
+++ b/src/node/ext/server.cc
@@ -38,8 +38,6 @@
#include <node.h>
#include <nan.h>
-#include <malloc.h>
-
#include <vector>
#include "grpc/grpc.h"
#include "grpc/grpc_security.h"