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.
11 lines
153 B
C
11 lines
153 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
int issetugid(void)
|
|
{
|
|
#warning Unsecure. Implement me.
|
|
return 0;
|
|
}
|