diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2010-07-15 08:16:06 -0300 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2010-07-15 08:16:06 -0300 |
commit | 13f7a1d2447c002adc36dd1bd51305edbc8e8636 (patch) | |
tree | 5f9985f179d0e43f7caa8e99eaf627865f967ba0 /strings/int2str.c | |
parent | 07e7b4d6fe590cb49a5009842d3153520f2e1a36 (diff) | |
download | mariadb-git-13f7a1d2447c002adc36dd1bd51305edbc8e8636.tar.gz |
WL#5486: Remove code for unsupported platforms
Remove MS-DOS specific code.
Diffstat (limited to 'strings/int2str.c')
-rw-r--r-- | strings/int2str.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/strings/int2str.c b/strings/int2str.c index fba98aac3f1..ecc214d58d5 100644 --- a/strings/int2str.c +++ b/strings/int2str.c @@ -19,9 +19,9 @@ /* _dig_vec arrays are public because they are used in several outer places. */ -char NEAR _dig_vec_upper[] = +char _dig_vec_upper[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; -char NEAR _dig_vec_lower[] = +char _dig_vec_lower[] = "0123456789abcdefghijklmnopqrstuvwxyz"; |