Silence unused variable warning in _kill system call dummy

This commit is contained in:
Mario Hüttel 2020-04-14 21:39:38 +02:00
parent cd23e93825
commit bf985a9ca4
1 changed files with 2 additions and 0 deletions

View File

@ -99,6 +99,8 @@ int _getpid()
int _kill(int pid)
{
(void)pid;
return -1;
}