index
:
uClibc-alpine
0.9.32
0.9.32-alpine
master
Where we track our uclibc patches
gitolite
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libc
/
sysdeps
/
linux
/
common
/
setpgrp.c
blob: 0fa8fccc3e64ce6c2fbfe90461993974a9c9a192 (
plain
)
1
2
3
4
5
6
7
#include <syscall.h>
#include <unistd.h>
int
setpgrp
(
void
)
{
return
setpgid
(
0
,
0
);
}