Browse Source

Fix headers for node.cc

v0.7.4-release
Bert Belder 14 years ago
parent
commit
a177d60e2b
  1. 11
      src/node.cc

11
src/node.cc

@ -11,14 +11,19 @@
#include <assert.h>
#include <unistd.h>
#include <errno.h>
#include <dlfcn.h> /* dlopen(), dlsym() */
#include <sys/types.h>
#include <unistd.h> /* setuid, getuid */
#include <pwd.h> /* getpwnam() */
#include <grp.h> /* getgrnam() */
#include "platform.h"
#ifdef __MINGW32__
# include "platform_win32.h" /* winapi_perror() */
#else // __POSIX__
# include <dlfcn.h> /* dlopen(), dlsym() */
# include <pwd.h> /* getpwnam() */
# include <grp.h> /* getgrnam() */
#endif
#include <node_buffer.h>
#include <node_io_watcher.h>
#include <node_net.h>

Loading…
Cancel
Save