repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
secondary cache feature in vm.
[minix.git]
/
lib
/
libc
/
posix
/
_getpgrp.c
blob
26d7afab41abf6eacc24bc6b72b2afb39f581e0d
1
#include <lib.h>
2
#define getpgrp _getpgrp
3
#include <unistd.h>
4
5
PUBLIC pid_t
getpgrp
()
6
{
7
message m
;
8
9
return
(
_syscall
(
MM
,
GETPGRP
, &
m
));
10
}