From 09a6ea94290c91bf08a7068046dcd79be14948b6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 26 May 2006 02:01:29 +0000 Subject: Amir Shalem writes: there are missing prototypes for chown() and execle() in uClibc-snapshot. I'm attaching a patch to add the missing prototypes. the error I'm getting without the patch: AR cr libc/libc_so.a LD libuClibc-0.9.28.so libc/libc_so.a(grantpt.os): In function `__unix_grantpt': grantpt.c:(.text+0x108): undefined reference to `__GI_chown' grantpt.c:(.text+0x1ae): undefined reference to `__GI_execle' --- libc/unistd/exec.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/unistd') diff --git a/libc/unistd/exec.c b/libc/unistd/exec.c index 0c90f376d..e40dadc8b 100644 --- a/libc/unistd/exec.c +++ b/libc/unistd/exec.c @@ -40,6 +40,7 @@ #include libc_hidden_proto(execl) +libc_hidden_proto(execle) libc_hidden_proto(execvp) libc_hidden_proto(memcpy) -- cgit v1.2.3