diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-05-30 23:09:11 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-05-30 23:09:11 +0000 |
commit | 5d2fd3083777a9edc8321b84f368aff090aa1911 (patch) | |
tree | e3a773e2446b6101eb80d4094101cc60617f0726 /sys | |
parent | b683bde6d1337a74da37452f713dd1c6c7afebdb (diff) |
sleep returns u_int
Diffstat (limited to 'sys')
-rw-r--r-- | sys/lib/libsa/stand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index 96153ccc5bb..a791a5d8beb 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.24 1997/05/30 23:06:28 mickey Exp $ */ +/* $OpenBSD: stand.h,v 1.25 1997/05/30 23:09:10 mickey Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -192,7 +192,7 @@ char *ttyname __P((int)); /* match userland decl, but ignore !0 */ void putc __P((int)); int getc __P((void)); int ischar __P((void)); -void sleep __P((u_int)); +u_int sleep __P((u_int)); void usleep __P((u_int)); void putchar __P((int)); |