mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix wrong return type in getpgid(2) implementation.
This commit is contained in:
parent
93778ef5da
commit
f47cb98b97
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
DEFN_SYSCALL1(pid_t, sys_getpgid, SYSCALL_GETPGID, pid_t);
|
||||
|
||||
extern "C" int getpgid(pid_t pid)
|
||||
extern "C" pid_t getpgid(pid_t pid)
|
||||
{
|
||||
return sys_getpgid(pid);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue