diff options
| author | 2002-03-14 03:15:49 +0000 | |
|---|---|---|
| committer | 2002-03-14 03:15:49 +0000 | |
| commit | 4f9e30d05c4b39ece1e3c5a9323df2ddfd85bd9b (patch) | |
| tree | 021b0ffa6ce82de256743d5f188c18bf3aee34de /sys/lib/libsa/printf.c | |
| parent | generate std ANSI protos, not __P ones (diff) | |
| download | wireguard-openbsd-4f9e30d05c4b39ece1e3c5a9323df2ddfd85bd9b.tar.xz wireguard-openbsd-4f9e30d05c4b39ece1e3c5a9323df2ddfd85bd9b.zip | |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/lib/libsa/printf.c')
| -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 ce9a6a6070d..4dfe0ea69de 100644 --- a/sys/lib/libsa/printf.c +++ b/sys/lib/libsa/printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printf.c,v 1.15 2002/03/14 01:27:07 millert Exp $ */ +/* $OpenBSD: printf.c,v 1.16 2002/03/14 03:16:10 millert Exp $ */ /* $NetBSD: printf.c,v 1.10 1996/11/30 04:19:21 gwr Exp $ */ /*- @@ -69,8 +69,8 @@ #include "stand.h" -static void kprintn __P((void (*)(int), u_long, int)); -static void kdoprnt __P((void (*)(int), const char *, va_list)); +static void kprintn(void (*)(int), u_long, int); +static void kdoprnt(void (*)(int), const char *, va_list); #ifndef STRIPPED static void sputchar(int); |
