diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-11-24 03:50:03 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-11-24 03:50:03 +0000 |
commit | 7329f4e92c90709fe57115f16a8ac9784a51b509 () | |
tree | 2039412a02a52cd761e765b64a55f601ffd4f7a4 /vsnprintf.c | |
parent | 220d07d2fcf5b8d66327e2c78770448c43c33db5 (diff) |
* vsnprintf (BSD_vfprintf): added VC++ compatible size specifications
(I, I32, I64). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | vsnprintf.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -758,6 +758,24 @@ reswitch: switch (ch) { flags |= QUADINT; goto rflag; #endif /* _HAVE_SANE_QUAD_ */ case 'c': cp = buf; *buf = (char)va_arg(ap, int); |