diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-05-28 17:03:12 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-05-28 17:03:12 +0000 |
| commit | a82bbc730e20fe9dec4abeb1d949b2d02869032a (patch) | |
| tree | 96c195652047b452e756960d6bdfc6786443c564 /lib/libc/stdio/printf.c | |
| parent | 6ba807ae3ad4a36737776b8360698979fb378d97 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/printf.c')
| -rw-r--r-- | lib/libc/stdio/printf.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/libc/stdio/printf.c b/lib/libc/stdio/printf.c index 1d2493110970..bd7d16c0bea5 100644 --- a/lib/libc/stdio/printf.c +++ b/lib/libc/stdio/printf.c @@ -41,29 +41,15 @@ static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 6/4/93"; __FBSDID("$FreeBSD$"); #include <stdio.h> -#if __STDC__ #include <stdarg.h> -#else -#include <varargs.h> -#endif int -#if __STDC__ printf(char const *fmt, ...) -#else -printf(fmt, va_alist) - char *fmt; - va_dcl -#endif { int ret; va_list ap; -#if __STDC__ va_start(ap, fmt); -#else - va_start(ap); -#endif ret = vfprintf(stdout, fmt, ap); va_end(ap); return (ret); |
