|
|
| version 1.2, 2003/06/17 04:26:51 | version 1.3, 2003/11/09 02:34:03 |
|---|---|
| Line 37 | Line 37 |
| * | * |
| * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 | * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 |
| * $FreeBSD: src/lib/libstand/printf.c,v 1.4 1999/12/27 08:45:14 peter Exp $ | * $FreeBSD: src/lib/libstand/printf.c,v 1.4 1999/12/27 08:45:14 peter Exp $ |
| * $DragonFly: src/lib/libstand/printf.c,v 1.1 2003/06/16 04:51:18 dillon Exp $ | * $DragonFly$ |
| */ | */ |
| /* | /* |
| Line 52 | Line 52 |
| * Note that stdarg.h and the ANSI style va_start macro is used for both | * Note that stdarg.h and the ANSI style va_start macro is used for both |
| * ANSI and traditional C compilers. | * ANSI and traditional C compilers. |
| */ | */ |
| #include <machine/stdarg.h> | #include <stdarg.h> |
| static char *ksprintn (u_long num, int base, int *len); | static char *ksprintn (u_long num, int base, int *len); |
| static int kvprintf(char const *fmt, void (*func)(int), void *arg, int radix, va_list ap); | static int kvprintf(char const *fmt, void (*func)(int), void *arg, int radix, va_list ap); |