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/gen/siglist.c | |
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/gen/siglist.c')
-rw-r--r-- | lib/libc/gen/siglist.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/gen/siglist.c b/lib/libc/gen/siglist.c index 1fb94722101..98143ab9229 100644 --- a/lib/libc/gen/siglist.c +++ b/lib/libc/gen/siglist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: siglist.c,v 1.7 2015/09/06 20:26:20 guenther Exp $ */ +/* $OpenBSD: siglist.c,v 1.8 2015/09/19 04:02:21 guenther Exp $ */ /* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. @@ -65,5 +65,7 @@ const char *const sys_siglist[NSIG] = { "User defined signal 2", /* SIGUSR2 */ "Thread AST", /* SIGTHR */ }; +#if 0 DEF_WEAK(sys_siglist); +#endif __strong_alias(_sys_siglist, sys_siglist); |