diff options
author | 2015-09-19 04:02:21 +0000 | |
---|---|---|
committer | 2015-09-19 04:02:21 +0000 | |
commit | 14437dc7d7f86aaf2122120902dad7bca8962f63 (patch) | |
tree | 9469973f98bebce6c8de409d40ff67cf39af9690 /lib/libc/hidden/stdlib.h | |
parent | doas doesn't need any files to be passed in. closefrom STDERR+1. ok benno (diff) | |
download | wireguard-openbsd-14437dc7d7f86aaf2122120902dad7bca8962f63.tar.xz wireguard-openbsd-14437dc7d7f86aaf2122120902dad7bca8962f63.zip |
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/hidden/stdlib.h')
-rw-r--r-- | lib/libc/hidden/stdlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/hidden/stdlib.h b/lib/libc/hidden/stdlib.h index 3b63f4004ae..9d0e771f4bb 100644 --- a/lib/libc/hidden/stdlib.h +++ b/lib/libc/hidden/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.3 2015/09/13 20:29:23 guenther Exp $ */ +/* $OpenBSD: stdlib.h,v 1.4 2015/09/19 04:02:21 guenther Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -41,8 +41,10 @@ __BEGIN_HIDDEN_DECLS char *__findenv(const char *, int, int *); __END_HIDDEN_DECLS +#if 0 extern PROTO_NORMAL(__mb_cur_max); /*extern PROTO_NORMAL(suboptarg);*/ +#endif PROTO_STD_DEPRECATED(_Exit); PROTO_DEPRECATED(a64l); |