10 lines
141 B
C
Executable file
10 lines
141 B
C
Executable file
#include <lib.h>
|
|
#define getpgrp _getpgrp
|
|
#include <unistd.h>
|
|
|
|
PUBLIC pid_t getpgrp()
|
|
{
|
|
message m;
|
|
|
|
return(_syscall(MM, GETPGRP, &m));
|
|
}
|