diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-05-10 16:38:14 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-05-10 16:38:14 -0700 |
commit | 8e5b91c79bab85d5a548dc3b19c3dce4f8ba29f9 (patch) | |
tree | a954de5ee47aa2b3caf78cae3af31c63504d35c5 /src/node.cc | |
parent | 032f651824869c429cc24fbd9f7a23e84ed34b1f (diff) | |
download | nodejs-8e5b91c79bab85d5a548dc3b19c3dce4f8ba29f9.tar.gz nodejs-8e5b91c79bab85d5a548dc3b19c3dce4f8ba29f9.tar.bz2 nodejs-8e5b91c79bab85d5a548dc3b19c3dce4f8ba29f9.zip |
Revert "Check for strings.h"
This reverts commit 032f651824869c429cc24fbd9f7a23e84ed34b1f.
Diffstat (limited to 'src/node.cc')
-rw-r--r-- | src/node.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/node.cc b/src/node.cc index bfb481e75..0fb925d64 100644 --- a/src/node.cc +++ b/src/node.cc @@ -5,6 +5,7 @@ #include <stdio.h> #include <stdlib.h> +#include <strings.h> #include <limits.h> /* PATH_MAX */ #include <assert.h> #include <unistd.h> @@ -13,12 +14,6 @@ #include <sys/types.h> #include <unistd.h> /* setuid, getuid */ -#ifdef HAVE_STRINGS_H -# include <strings.h> -#else -# include <string.h> -#endif - #include <node_buffer.h> #include <node_io_watcher.h> #include <node_net2.h> |