Преглед изворни кода

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);