From db2fe992e8b767b9de316911ca11f97130d1e8b8 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Tue, 10 Feb 1998 02:44:38 +0000 Subject: [PATCH] more explicit protos --- src/include/unistd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/unistd.h b/src/include/unistd.h index d8722ecf..16142004 100644 --- a/src/include/unistd.h +++ b/src/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.17 1998/02/10 02:19:47 deraadt Exp $ */ +/* $OpenBSD: unistd.h,v 1.18 1998/02/10 02:44:38 deraadt Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -54,7 +54,7 @@ __BEGIN_DECLS __dead void _exit __P((int)) __attribute__((noreturn)); int access __P((const char *, int)); -unsigned alarm __P((unsigned)); +unsigned int alarm __P((unsigned int)); int chdir __P((const char *)); int chown __P((const char *, uid_t, gid_t)); int close __P((int)); @@ -92,7 +92,7 @@ int setgid __P((gid_t)); int setpgid __P((pid_t, pid_t)); pid_t setsid __P((void)); int setuid __P((uid_t)); -unsigned sleep __P((unsigned)); +unsigned int sleep __P((unsigned int)); long sysconf __P((int)); pid_t tcgetpgrp __P((int)); int tcsetpgrp __P((int, pid_t));