Browse Source

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>
Peter S. Mazinger 14 years ago
parent
commit
7d0131c552
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/unistd/exec.c

+ 1 - 1
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;