summaryrefslogtreecommitdiff
path: root/libc/unistd
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-04-23 22:02:28 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:42 +0200
commit7d0131c55226a515086bf36e664ed70d19dba7f1 (patch)
tree7828de1734b95f6563fc01e0a4c3b75486e6a221 /libc/unistd
parent80101f0d62abb01628851e79154e61fbe2034b0e (diff)
exec.c: remove duplicate attribute_hidden
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/unistd')
-rw-r--r--libc/unistd/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/exec.c b/libc/unistd/exec.c
index 7d24072e7..6066db98e 100644
--- a/libc/unistd/exec.c
+++ b/libc/unistd/exec.c
@@ -68,7 +68,7 @@ extern void *__exec_alloc(size_t size, int func) attribute_hidden;
# ifdef L___exec_alloc
-void attribute_hidden *__exec_alloc(size_t size, int func)
+void *__exec_alloc(size_t size, int func)
{
static void *common_cache, *execvp_cache;
static size_t common_size, execvp_size;