freebsd-dev/usr.bin/printf
Peter Wemm d72f654c65 When used as a shell builtin, this program decoded a subset of arguments
known to printf(3) and then used printf() to format it... The only
problem what the #define printf out1fmt.  The code was behaving differently
when run as a shell builtin since out1fmt() isn't printf(3).

Simple hack.  Print to a buffer and fputs (also #defined for sh) the
result.  This should fix the printf builtin problem in PR#1673, rather
than leaving the call commented out.  (printf.o was being statically linked
in anyway, we might as well use it)
1996-10-01 04:56:59 +00:00
..
Makefile
printf.1 Correctly match the format flags and their descriptions. 1996-04-09 21:46:24 +00:00
printf.c When used as a shell builtin, this program decoded a subset of arguments 1996-10-01 04:56:59 +00:00