kill_noposix.c: Remove obsolete __kill()

This commit is contained in:
Joel Sherrill
2015-05-20 15:02:19 -07:00
parent 1c0663b48f
commit 221031ec9f

View File

@@ -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