diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-11-15 07:57:30 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-11-15 07:57:30 +0000 |
commit | 6b0979a94e92069ddbc67447544e8f62c524320d (patch) | |
tree | ff1499604acee875fa9ff92fbee24aa7de8833d8 /sys/kern/subr_prf.c | |
parent | 5de7fd4f9b344c2d5f09584649072b766040e1d6 (diff) |
remove statics
Diffstat (limited to 'sys/kern/subr_prf.c')
-rw-r--r-- | sys/kern/subr_prf.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index 8ac3904b2ae..17ddf4dce14 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_prf.c,v 1.35 2001/09/05 22:32:39 deraadt Exp $ */ +/* $OpenBSD: subr_prf.c,v 1.36 2001/11/15 07:57:29 niklas Exp $ */ /* $NetBSD: subr_prf.c,v 1.45 1997/10/24 18:14:25 chuck Exp $ */ /*- @@ -97,9 +97,8 @@ extern int uvm_doswapencrypt; * local prototypes */ -static int kprintf __P((const char *, int, void *, - char *, va_list)); -static void putchar __P((int, int, struct tty *)); +int kprintf __P((const char *, int, void *, char *, va_list)); +void putchar __P((int, int, struct tty *)); /* @@ -318,7 +317,7 @@ addlog(fmt, va_alist) * => if console, then the last MSGBUFS chars are saved in msgbuf * for inspection later (e.g. dmesg/syslog) */ -static void +void putchar(c, flags, tp) register int c; int flags; @@ -746,7 +745,7 @@ vsnprintf(buf, size, fmt, ap) } \ } -static int +int kprintf(fmt0, oflags, vp, sbuf, ap) const char *fmt0; int oflags; |