瀏覽代碼

need sys/syscall.h for __NR_fork define

Mike Frysinger 20 年之前
父節點
當前提交
230eeaf809
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      libc/sysdeps/linux/common/vfork.c

+ 1 - 0
libc/sysdeps/linux/common/vfork.c

@@ -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