The POSIX manpage for getrlimit(3) requires sys/resource.h to be
included. This header used to be included by sys/wait.h in glibc.
As of glibc 2.16 however, this is not the case anymore, thus breaking
the compilation.

Signed-off-by: Vianney le Clément de Saint-Marcq <vleclement@gmail.com>
---
 arch/um/os-Linux/start_up.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/um/os-Linux/start_up.c b/arch/um/os-Linux/start_up.c
index 425162e..67704ab 100644
--- a/arch/um/os-Linux/start_up.c
+++ b/arch/um/os-Linux/start_up.c
@@ -13,6 +13,7 @@
 #include <signal.h>
 #include <string.h>
 #include <sys/mman.h>
+#include <sys/resource.h>
 #include <sys/stat.h>
 #include <sys/wait.h>
 #include <asm/unistd.h>
-- 
1.7.11.4
