summaryrefslogtreecommitdiff
path: root/lib/libc/locale
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-09-19 04:02:22 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-09-19 04:02:22 +0000
commit1892ffe471a1a6daeba5187eb37c5fe9cb48cf3e (patch)
treee7b042ed001666cc8e0588591c4154d826c86fda /lib/libc/locale
parentc9d092ae2ea91f9e4835850570601efad99c667d (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.c4
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