Explorar o código

Make execle() and chown() available again (corrects commit 15179).

Peter Kjellerstedt %!s(int64=19) %!d(string=hai) anos
pai
achega
2abbba9a08
Modificáronse 2 ficheiros con 2 adicións e 0 borrados
  1. 1 0
      libc/sysdeps/linux/common/chown.c
  2. 1 0
      libc/unistd/exec.c

+ 1 - 0
libc/sysdeps/linux/common/chown.c

@@ -25,3 +25,4 @@ int chown(const char *path, uid_t owner, gid_t group)
 	}
 	return (__syscall_chown(path, owner, group));
 }
+libc_hidden_def(chown)

+ 1 - 0
libc/unistd/exec.c

@@ -179,6 +179,7 @@ int execle(const char *path, const char *arg, ...)
 
 	return n;
 }
+libc_hidden_def(execle)
 
 #endif
 /**********************************************************************/