Browse Source

Add missing include (that apparently didn't break anything on most platforms).

kenton@google.com 15 years ago
parent
commit
4844368346
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/google/protobuf/compiler/subprocess.cc

+ 1 - 0
src/google/protobuf/compiler/subprocess.cc

@@ -34,6 +34,7 @@
 
 #ifndef _WIN32
 #include <errno.h>
+#include <sys/select.h>
 #include <sys/wait.h>
 #include <signal.h>
 #endif