projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add mips n32 port (ILP32 ABI for mips64)
[oweals/musl.git]
/
src
/
unistd
/
getsid.c
1
#include <unistd.h>
2
#include "syscall.h"
3
4
pid_t getsid(pid_t pid)
5
{
6
return syscall(SYS_getsid, pid);
7
}