summaryrefslogtreecommitdiffstats
path: root/usr.bin/printf/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/printf/printf.c')
-rw-r--r--usr.bin/printf/printf.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c
index d370d98..90e8c45 100644
--- a/usr.bin/printf/printf.c
+++ b/usr.bin/printf/printf.c
@@ -58,15 +58,20 @@ static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93";
#endif
#define PF(f, func) { \
+ char *b = NULL; \
if (fieldwidth) \
if (precision) \
- (void)printf(f, fieldwidth, precision, func); \
+ (void)asprintf(&b, f, fieldwidth, precision, func); \
else \
- (void)printf(f, fieldwidth, func); \
+ (void)asprintf(&b, f, fieldwidth, func); \
else if (precision) \
- (void)printf(f, precision, func); \
+ (void)asprintf(&b, f, precision, func); \
else \
- (void)printf(f, func); \
+ (void)asprintf(&b, f, func); \
+ if (b) { \
+ (void)fputs(b, stdout); \
+ free(b); \
+ } \
}
static int asciicode __P((void));
OpenPOWER on IntegriCloud