repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix AS-safety of close when aio is in use and fd map is expanded
[musl.git]
/
src
/
unistd
/
setpgrp.c
blob
a2a37f65f3b7ec1c0aff38da28949b1972ec80a5
1
#include <unistd.h>
2
3
pid_t
setpgrp
(
void
)
4
{
5
return
setpgid
(
0
,
0
);
6
}