Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-05-23 10:00:49 +0400
committerChristopher Faylor <me@cgf.cx>2002-05-23 10:00:49 +0400
commitb2f338e9a91e18f1c66f68364a53985bd4c05997 (patch)
tree9ae69d9fb37ebe8eddf784521d0dad26f07353b9 /winsup/cygwin/smallprint.c
parentff7b1ed92714e1ebba98f1b011a136cabbc7ce1d (diff)
* smallprint.c (__small_vsprintf): Implement '%o' after all these years.
Diffstat (limited to 'winsup/cygwin/smallprint.c')
-rw-r--r--winsup/cygwin/smallprint.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/smallprint.c b/winsup/cygwin/smallprint.c
index 97a2b6ce1..d2a365c94 100644
--- a/winsup/cygwin/smallprint.c
+++ b/winsup/cygwin/smallprint.c
@@ -135,6 +135,9 @@ __small_vsprintf (char *dst, const char *fmt, va_list ap)
case 'U':
dst = rn (dst, 10, 0, va_arg (ap, long long), len, pad);
break;
+ case 'o':
+ dst = rn (dst, 8, 0, va_arg (ap, unsigned), len, pad);
+ break;
case 'p':
*dst++ = '0';
*dst++ = 'x';