4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
16 lines
231 B
C
16 lines
231 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(getpgrp, _getpgrp)
|
|
#endif
|
|
|
|
PUBLIC pid_t getpgrp()
|
|
{
|
|
message m;
|
|
|
|
return(_syscall(PM_PROC_NR, GETPGRP, &m));
|
|
}
|