소스 검색

Make sure types are pulled in

Eric Andersen 23 년 전
부모
커밋
d25de22476
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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