Browse Source

Make sure types are pulled in

Eric Andersen 23 năm trước cách đây
mục cha
commit
d25de22476
2 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 2 0
      ldso/ldso/ld_syscall.h
  2. 2 0
      ldso/ldso/syscall.h

+ 2 - 0
ldso/ldso/ld_syscall.h

@@ -1,5 +1,7 @@
+#include <sys/types.h>
 #include "syscalls.h"
 
+
 /* Here are the definitions for some syscalls that are used
    by the dynamic linker.  The idea is that we want to be able
    to call these before the errno symbol is dynamicly linked, so

+ 2 - 0
ldso/ldso/syscall.h

@@ -1,5 +1,7 @@
+#include <sys/types.h>
 #include "syscalls.h"
 
+
 /* Here are the definitions for some syscalls that are used
    by the dynamic linker.  The idea is that we want to be able
    to call these before the errno symbol is dynamicly linked, so