diff --git a/src/node_file.cc b/src/node_file.cc index 9eb04892d..638479a82 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -851,9 +851,7 @@ void InitFs(Handle target) { stats_constructor_template = Persistent::New(stat_templ); target->Set(String::NewSymbol("Stats"), stats_constructor_template->GetFunction()); -#ifdef __POSIX__ StatWatcher::Initialize(target); -#endif // __POSIX__ File::Initialize(target); } diff --git a/src/node_stat_watcher.cc b/src/node_stat_watcher.cc index 5173f1aee..bbc4fdfbd 100644 --- a/src/node_stat_watcher.cc +++ b/src/node_stat_watcher.cc @@ -1,5 +1,3 @@ -#ifdef __POSIX__ - // Copyright 2009 Ryan Dahl #include @@ -113,5 +111,3 @@ void StatWatcher::Stop () { } // namespace node - -#endif // __POSIX__