소스 검색

use errno.h not sys/errno.h as pointed out by sjhill

Mike Frysinger 18 년 전
부모
커밋
668f51ff6a
2개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 1
      libc/inet/rpc/clnt_generic.c
  2. 1 1
      libc/sysdeps/linux/e1/vfork.c

+ 0 - 1
libc/inet/rpc/clnt_generic.c

@@ -44,7 +44,6 @@
 #include <string.h>
 #include <rpc/rpc.h>
 #include <sys/socket.h>
-#include <sys/errno.h>
 #include <netdb.h>
 
 #undef get_rpc_createerr

+ 1 - 1
libc/sysdeps/linux/e1/vfork.c

@@ -1,5 +1,5 @@
 #include <sys/types.h>
 #include <sys/syscall.h>
-#include <sys/errno.h>
+#include <errno.h>
 
 _syscall0(pid_t, vfork);