summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/kill.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/kill.c')
-rw-r--r--cpukit/posix/src/kill.c21
1 files changed, 1 insertions, 20 deletions
diff --git a/cpukit/posix/src/kill.c b/cpukit/posix/src/kill.c
index b601ee1d01..34ea487806 100644
--- a/cpukit/posix/src/kill.c
+++ b/cpukit/posix/src/kill.c
@@ -1,7 +1,7 @@
/*
* 3.3.2 Send a Signal to a Process, P1003.1b-1993, p. 68
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -30,22 +30,3 @@ int kill(
return killinfo( pid, sig, NULL );
}
-/*
- * _kill_r
- *
- * This is the Newlib dependent reentrant version of kill().
- */
-
-#if defined(RTEMS_NEWLIB)
-
-#include <reent.h>
-
-int _kill_r(
- struct _reent *ptr,
- pid_t pid,
- int sig
-)
-{
- return kill( pid, sig );
-}
-#endif