Browse Source

raise: remove unused hidden weak symbol __raise

It is not used by anybody, otherwise users of dynamically linked uclibc
would notice - it is not exported from libuClibc-x.x.x.so

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 15 years ago
parent
commit
2528a3f6c2
1 changed files with 2 additions and 6 deletions
  1. 2 6
      libc/signal/raise.c

+ 2 - 6
libc/signal/raise.c

@@ -7,12 +7,8 @@
 #include <signal.h>
 #include <sys/types.h>
 
-
-
-int __raise (int signo)  attribute_hidden;
-int __raise(int signo)
+int raise(int signo)
 {
-    return kill(getpid(), signo);
+	return kill(getpid(), signo);
 }
-weak_alias(__raise,raise)
 libc_hidden_def(raise)