diff options
author | mp <mp@FreeBSD.org> | 2004-07-11 02:17:56 +0000 |
---|---|---|
committer | mp <mp@FreeBSD.org> | 2004-07-11 02:17:56 +0000 |
commit | fc6d10ab3edf803f748e673fdd1f64a3d9640ca2 (patch) | |
tree | d96ddad6fded51e784b4b77eea8ca0d82efa5497 /contrib/tcsh/tc.printf.c | |
parent | 240d7c6f403b210d3609f1593f55dd73266bc844 (diff) | |
parent | bbd1addf8f9452690ad13ce5b875ee4cc9633958 (diff) | |
download | FreeBSD-src-fc6d10ab3edf803f748e673fdd1f64a3d9640ca2.zip FreeBSD-src-fc6d10ab3edf803f748e673fdd1f64a3d9640ca2.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r131962,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/tcsh/tc.printf.c')
-rw-r--r-- | contrib/tcsh/tc.printf.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/tcsh/tc.printf.c b/contrib/tcsh/tc.printf.c index a6f130a..f19ac55 100644 --- a/contrib/tcsh/tc.printf.c +++ b/contrib/tcsh/tc.printf.c @@ -1,4 +1,4 @@ -/* $Header: /src/pub/tcsh/tc.printf.c,v 3.23 2002/03/08 17:36:47 christos Exp $ */ +/* $Header: /src/pub/tcsh/tc.printf.c,v 3.24 2003/12/02 17:59:30 christos Exp $ */ /* * tc.printf.c: A public-domain, minimal printf/sprintf routine that prints * through the putchar() routine. Feel free to use for @@ -34,7 +34,7 @@ */ #include "sh.h" -RCSID("$Id: tc.printf.c,v 3.23 2002/03/08 17:36:47 christos Exp $") +RCSID("$Id: tc.printf.c,v 3.24 2003/12/02 17:59:30 christos Exp $") #ifdef lint #undef va_arg @@ -174,6 +174,11 @@ doprnt(addchar, sfmt, ap) (*addchar) ((int) (' ' | attributes)); break; + case 'p': + do_long = 1; + hash = 1; + fmt = 'x'; + /*FALLTHROUGH*/ case 'o': case 'x': case 'u': |