OSDN Git Service

need sys/syscall.h for __NR_fork define
authorMike Frysinger <vapier@gentoo.org>
Fri, 20 Jan 2006 23:30:01 +0000 (23:30 -0000)
committerMike Frysinger <vapier@gentoo.org>
Fri, 20 Jan 2006 23:30:01 +0000 (23:30 -0000)
libc/sysdeps/linux/common/vfork.c

index 0766279..b3543a6 100644 (file)
@@ -1,6 +1,7 @@
 /* Trivial implementation for arches that lack vfork */
 #include <unistd.h>
 #include <sys/types.h>
+#include <sys/syscall.h>
 
 #ifdef __NR_fork