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 | b3d22cef93306849f7eaeba2907bcd1099f9e33f (patch) | |
tree | 5f9985f179d0e43f7caa8e99eaf627865f967ba0 /strings/int2str.c | |
parent | f54a1182494db9bababccfa83692630bec51ca95 (diff) | |
download | mariadb-git-b3d22cef93306849f7eaeba2907bcd1099f9e33f.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"; |