refactor(userspace/libc): replace syscall2 with call_kill in kill function

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-02-20 02:00:26 +02:00
parent d375acd0ec
commit b1a107fb65
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A

View File

@ -21,7 +21,7 @@
export int kill(pid_t pid, int sig)
{
return syscall2(SYS_KILL, pid, sig);
return call_kill(pid, sig);
}
export int killpg(pid_t, int);