Sfoglia il codice sorgente

Make sure types are pulled in

Eric Andersen 23 anni fa
parent
commit
d25de22476
2 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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