diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-19 04:02:22 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-19 04:02:22 +0000 |
commit | 1892ffe471a1a6daeba5187eb37c5fe9cb48cf3e (patch) | |
tree | e7b042ed001666cc8e0588591c4154d826c86fda /lib/libc/locale | |
parent | c9d092ae2ea91f9e4835850570601efad99c667d (diff) |
Don't wrap initialized variables: binutils appears to be mishandling them
on arm and m88k
problems with optind observed by jsg@
Diffstat (limited to 'lib/libc/locale')
-rw-r--r-- | lib/libc/locale/__mb_cur_max.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/locale/__mb_cur_max.c b/lib/libc/locale/__mb_cur_max.c index 8849a23c681..42fbcad68dc 100644 --- a/lib/libc/locale/__mb_cur_max.c +++ b/lib/libc/locale/__mb_cur_max.c @@ -1,4 +1,4 @@ -/* $OpenBSD: __mb_cur_max.c,v 1.3 2015/09/13 08:31:47 guenther Exp $ */ +/* $OpenBSD: __mb_cur_max.c,v 1.4 2015/09/19 04:02:21 guenther Exp $ */ /* $NetBSD: __mb_cur_max.c,v 1.2 2001/01/25 01:25:06 itojun Exp $ */ /*- @@ -32,4 +32,6 @@ size_t __mb_cur_max = 1; size_t __mb_len_max_runtime = MB_LEN_MAX; +#if 0 DEF_STRONG(__mb_cur_max); +#endif |