home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Il CD di internet
/
CD.iso
/
SOURCE
/
D
/
LIBC
/
LIBC-4.6
/
LIBC-4
/
libc-linux
/
sysdeps
/
linux
/
setpgrp.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-08
|
145 b
|
12 lines
#include <syscall.h>
#include <unistd.h>
static inline
_syscall2(int,setpgid,pid_t,pid,pid_t,pgid)
int
setpgrp(void)
{
return setpgid(0,0);
}