Browse Source

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

Peter Kjellerstedt 18 years ago
parent
commit
2abbba9a08
2 changed files with 2 additions and 0 deletions
  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
 /**********************************************************************/