diff options
author | 1996-10-24 12:11:07 +0000 | |
---|---|---|
committer | 1996-10-24 12:11:07 +0000 | |
commit | cbb6d207d20d097ef06071e73c63e0508d2eb9ee (patch) | |
tree | 60b64786829a1937896abbebe60a5dd55d81706b | |
parent | add 3 another build directories (diff) | |
download | wireguard-openbsd-cbb6d207d20d097ef06071e73c63e0508d2eb9ee.tar.xz wireguard-openbsd-cbb6d207d20d097ef06071e73c63e0508d2eb9ee.zip |
fix protos and decls.
-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; |