Fix wrong return type in getpgid(2) implementation.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-12-28 21:24:45 +01:00
parent 93778ef5da
commit f47cb98b97
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}