libposix: getppid

This commit is contained in:
2017-04-22 00:40:39 +02:00
parent d2a0389ae4
commit c2204d83a5
2 changed files with 7 additions and 0 deletions

View File

@ -158,6 +158,12 @@ POSIX_getpid(int *errnop)
return getpid();
}
int
POSIX_getppid(int *errnop)
{
return getppid();
}
int
POSIX_fork(int *errnop)
{