projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76235e4
)
Split out digits strings.
author
drepper
<drepper>
Sun, 26 Oct 1997 19:01:41 +0000
(19:01 +0000)
committer
drepper
<drepper>
Sun, 26 Oct 1997 19:01:41 +0000
(19:01 +0000)
stdio-common/_itoa.c
patch
|
blob
|
history
diff --git
a/stdio-common/_itoa.c
b/stdio-common/_itoa.c
index
91bc8a8
..
e5705d5
100644
(file)
--- a/
stdio-common/_itoa.c
+++ b/
stdio-common/_itoa.c
@@
-157,11
+157,9
@@
static const struct base_table_t base_table[] =
};
/* Lower-case digits. */
-const char _itoa_lower_digits[]
- = "0123456789abcdefghijklmnopqrstuvwxyz";
+extern const char _itoa_lower_digits[];
/* Upper-case digits. */
-const char _itoa_upper_digits[]
- = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
+extern const char _itoa_upper_digits[];
char *