diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-29 08:46:28 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-29 08:46:28 +0000 |
commit | 31a731584ca067bdf30c9d9577adc25501208b71 (patch) | |
tree | 51f98f8f60eead4eee5787766852e9810e261aca /sys | |
parent | e4ebc91f2c9fe15640cf8df3bb3a9e38974fdc8b (diff) |
-Wall happiness, especially for sparc/stand
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/systm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 68e3a091d3c..cc15025ec35 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: systm.h,v 1.11 1996/10/29 08:28:24 mickey Exp $ */ +/* $OpenBSD: systm.h,v 1.12 1996/10/29 08:46:27 mickey Exp $ */ /* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */ /*- @@ -149,6 +149,7 @@ int vsprintf __P((char *, const char *, va_list)) __kprintf_attribute__((__format__(__kprintf__,2,3))); int sprintf __P((char *buf, const char *, ...)) __kprintf_attribute__((__format__(__kprintf__,2,3))); +struct tty; void ttyprintf __P((struct tty *, const char *, ...)) __kprintf_attribute__((__format__(__kprintf__,2,3))); @@ -209,6 +210,7 @@ void *shutdownhook_establish __P((void (*)(void *), void *)); void shutdownhook_disestablish __P((void *)); void doshutdownhooks __P((void)); +struct uio; int uiomove __P((caddr_t, int, struct uio *)); int setjmp __P((label_t *)); |