Question
_exit() implementation in syscalls.c wrong?
Looking at the file "syscalls.c" I found the following line:
The implementation of "_exit()" calls "_kill(status, -1)".
Shouldn't it be "_kill(-1, status)" instead?
Note: Because "_kill()" is implemented as dummy by default, this line has no effect unless the "_kill()" function is replaced by a real implementation.
