aboutsummaryrefslogtreecommitdiffstats
path: root/vsnprintf.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-29 18:51:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-29 18:51:39 +0000
commit45f6fbf339e3666ea1e64d9e13fd40c61977248d (patch)
tree33935bb9e249626fbba18fb2b187ccfd24d5ee90 /vsnprintf.c
parent5d394118fff7fb94cbba4fc2e3f6d740932e33ce (diff)
downloadruby-45f6fbf339e3666ea1e64d9e13fd40c61977248d.tar.gz
* removed trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vsnprintf.c')
-rw-r--r--vsnprintf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/vsnprintf.c b/vsnprintf.c
index a389d15fc3..26e2082f12 100644
--- a/vsnprintf.c
+++ b/vsnprintf.c
@@ -37,7 +37,7 @@
* paragraph 3 above is now null and void.
*/
-/* SNPRINTF.C
+/* SNPRINTF.C
* fjc 7-31-97 Modified by Mib Software to be a standalone snprintf.c module.
* http://www.mibsoftware.com
* Mib Software does not warrant this software any differently than the
@@ -50,7 +50,7 @@
* allow inclusion into libraries with less chance of namespace collisions.
*
* snprintf should be the only externally visible item.
- *
+ *
* As of 7-31-97 FLOATING_POINT is NOT provided. The code is somewhat
* non-portable, so it is disabled.
*/
@@ -84,7 +84,7 @@
# endif
# include <varargs.h>
#endif
-#ifndef _BSD_VA_LIST_
+#ifndef _BSD_VA_LIST_
#define _BSD_VA_LIST_ va_list
#endif
@@ -408,7 +408,7 @@ BSD__uqtoa(register u_quad_t val, char *endp, int base, int octzero, const char
break;
default: /* oops */
- /*
+ /*
abort();
*/
break; /* fjc 7-31-97. Don't reference abort() here */
@@ -473,7 +473,7 @@ BSD__ultoa(register u_long val, char *endp, int base, int octzero, const char *x
break;
default: /* oops */
- /*
+ /*
abort();
*/
break; /* fjc 7-31-97. Don't reference abort() here */
@@ -824,7 +824,7 @@ fp_begin: _double = va_arg(ap, double);
ch = (ch == 'g') ? 'e' : 'E';
else
ch = 'g';
- }
+ }
if (ch == 'a' || ch == 'A') {
--expt;
expsize = exponent(expstr, expt, ch + 'p' - 'a');