From 1021c05f1bef70d78cddff41b151787b8195cac9 Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Tue, 1 Apr 2014 17:33:41 -0700 Subject: [PATCH] Include sys/types.h and sys/wait.h for waitpid (cherry picked from commit 8b2c6d44cac206b61dffd965863336e6f803fc66) Change-Id: Ice1f6d956c11aaefd3d846c12121f08613a94446 --- tests/sys_select_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sys_select_test.cpp b/tests/sys_select_test.cpp index 5252e6bf7..c1732ee29 100644 --- a/tests/sys_select_test.cpp +++ b/tests/sys_select_test.cpp @@ -20,6 +20,8 @@ #include #include #include +#include +#include TEST(sys_select, fd_set_smoke) { fd_set fds;