From 4723d5537c269e253b131036f7cf2b4fe5a3b8d4 Mon Sep 17 00:00:00 2001 From: mycroft Date: Sat, 7 Sep 1996 14:30:56 +0000 Subject: [PATCH] Prototype poll(2). --- include/unistd.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/unistd.h b/include/unistd.h index 821ff12f4df6..1bd9a1786eb2 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.29 1996/08/09 10:32:11 mrg Exp $ */ +/* $NetBSD: unistd.h,v 1.30 1996/09/07 14:30:56 mycroft Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -103,6 +103,7 @@ ssize_t write __P((int, const void *, size_t)); /* structure timeval required for select() */ #include +struct pollfd; int acct __P((const char *)); char *brk __P((const char *)); @@ -133,6 +134,7 @@ int mkstemp __P((char *)); char *mktemp __P((char *)); int nfssvc __P((int, void *)); int nice __P((int)); +int poll __P((struct pollfd *, u_int, int)); void psignal __P((unsigned int, const char *)); extern __const char *__const sys_siglist[]; int profil __P((char *, size_t, u_long, u_int));