diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-24 12:11:08 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-24 12:11:08 +0000 |
commit | 5935acee256754db230284746c2321c994e9cefa (patch) | |
tree | 4513b1fa6b47c53bd1a3cbd28aa9cc6ae60e069e /sys/lib | |
parent | c457a2a9c166b1936a33f2b3a5e43e450172f6a6 (diff) |
fix protos and decls.
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libsa/printf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libsa/printf.c b/sys/lib/libsa/printf.c index 9138f8707ff..18851754f54 100644 --- a/sys/lib/libsa/printf.c +++ b/sys/lib/libsa/printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printf.c,v 1.3 1996/09/20 14:20:25 mickey Exp $ */ +/* $OpenBSD: printf.c,v 1.4 1996/10/24 12:11:07 mickey Exp $ */ /* $NetBSD: printf.c,v 1.7 1996/02/08 20:19:36 gwr Exp $ */ /*- @@ -70,10 +70,10 @@ #include "stand.h" static void kprintn __P((void (*)(int), u_long, int)); -static void sputchar __P((int)); static void kprintf __P((void (*)(int), const char *, va_list)); #ifndef NO_SPRINTF +static void sputchar __P((int)); static char *sbuf; static void @@ -130,7 +130,7 @@ vprintf(const char *fmt, va_list ap) kprintf(putchar, fmt, ap); } -void +static void kprintf(put, fmt, ap) void (*put)__P((int)); const char *fmt; |