summaryrefslogtreecommitdiff
path: root/lib/libc/sys
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-09-15 10:09:14 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-09-15 10:09:14 +0000
commit073a28f4d8ca1c9f8dbf945284e5f0ec6830d1b9 (patch)
treebfdc2c10cabe05e0a53242f7967bc806fdf7eb27 /lib/libc/sys
parent3d910cc7eeaa72e04d3fc80ea16c51c19869701e (diff)
Add a couple of syscalls; bring more prototypes into scope
Diffstat (limited to 'lib/libc/sys')
-rw-r--r--lib/libc/sys/protolib.c5
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 */