diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-10 02:44:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-10 02:44:39 +0000 |
commit | 1844c70fab2a79dba5c1b1942c5097b4b4a597e2 (patch) | |
tree | 697483a7c2d5854eb006b35a7d474066ed87cce8 /include | |
parent | 62f3233e90c139481a6d89b9f57ca29154b24ba3 (diff) |
more explicit protos
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/unistd.h b/include/unistd.h index d8722ecf100..161420048fc 100644 --- a/include/unistd.h +++ b/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)); |