Bladeren bron

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

Mike Frysinger 18 jaren geleden
bovenliggende
commit
668f51ff6a
2 gewijzigde bestanden met toevoegingen van 1 en 2 verwijderingen
  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);