summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-05-20 15:02:19 -0700
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-05-21 08:28:54 -0700
commit221031ec9ffb329ec224056bf2672663113d9966 (patch)
tree99cd81bd6e4d58b13a2aebc80c164599b75bb345
parentmcf52235-testsuite.tcfg: Add syscall01 (diff)
downloadrtems-221031ec9ffb329ec224056bf2672663113d9966.tar.bz2
kill_noposix.c: Remove obsolete __kill()
-rw-r--r--cpukit/libcsupport/src/kill_noposix.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpukit/libcsupport/src/kill_noposix.c b/cpukit/libcsupport/src/kill_noposix.c
index cfc99f6218..3cb807c95e 100644
--- a/cpukit/libcsupport/src/kill_noposix.c
+++ b/cpukit/libcsupport/src/kill_noposix.c
@@ -9,7 +9,6 @@
*
* + kill
* + _kill_r
- * + __kill
* + sleep
*/
@@ -45,9 +44,4 @@ int _kill_r( struct _reent *ptr, pid_t pid, int sig )
return 0;
}
#endif
-
-int __kill( pid_t pid, int sig )
-{
- return 0;
-}
#endif