diff options
Diffstat (limited to 'lib/libc/sys/protolib.c')
-rw-r--r-- | lib/libc/sys/protolib.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/sys/protolib.c b/lib/libc/sys/protolib.c index b58089c55f2..16593444ef1 100644 --- a/lib/libc/sys/protolib.c +++ b/lib/libc/sys/protolib.c @@ -30,7 +30,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: protolib.c,v 1.3 1996/09/15 09:31:56 tholo Exp $"; +static char rcsid[] = "$OpenBSD: protolib.c,v 1.4 1996/09/15 10:09:13 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -43,6 +43,7 @@ static char rcsid[] = "$OpenBSD: protolib.c,v 1.3 1996/09/15 09:31:56 tholo Exp #include <sys/mount.h> #include <sys/msg.h> #include <sys/mman.h> +#include <sys/poll.h> #include <sys/ptrace.h> #include <sys/resource.h> #include <sys/sem.h> @@ -255,3 +256,5 @@ int shmget(key_t, int, int); /* 231 */ int minherit(caddr_t, size_t, int); /* 250 */ int rfork(int); /* 251 */ +int poll(struct pollfd *, unsigned long, int); /* 252 */ +int issetugid(void); /* 253 */ |