diff options
Diffstat (limited to 'signal/kill.c')
-rw-r--r-- | signal/kill.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/signal/kill.c b/signal/kill.c index 6aa8cc7..976d94c 100644 --- a/signal/kill.c +++ b/signal/kill.c @@ -23,9 +23,7 @@ send SIG to all processes in the current process's process group. If PID is < -1, send SIG to all processes in process group - PID. */ int -__kill (pid, sig) - int pid; - int sig; +__kill (int pid, int sig) { __set_errno (ENOSYS); return -1; |