diff options
author | 2016-09-05 18:45:08 +0000 | |
---|---|---|
committer | 2016-09-05 18:45:08 +0000 | |
commit | 472649e3cde2f10679b4a88fc41688665204bbea (patch) | |
tree | 934b7a5ca7aedbfd9a45031bd72b3a144446a1de /lib/libcxx/include/cstdio | |
parent | Remove code that was never enabled, it will not happen. (diff) | |
download | wireguard-openbsd-472649e3cde2f10679b4a88fc41688665204bbea.tar.xz wireguard-openbsd-472649e3cde2f10679b4a88fc41688665204bbea.zip |
Implement OpenBSD support in libc++ and libunwind.
ok kettenis@
Diffstat (limited to 'lib/libcxx/include/cstdio')
-rw-r--r-- | lib/libcxx/include/cstdio | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcxx/include/cstdio b/lib/libcxx/include/cstdio index 50fdd345742..478517622cd 100644 --- a/lib/libcxx/include/cstdio +++ b/lib/libcxx/include/cstdio @@ -155,7 +155,7 @@ using ::tmpnam; #ifndef _LIBCPP_HAS_NO_STDIN using ::getchar; -#if _LIBCPP_STD_VER <= 11 +#if _LIBCPP_STD_VER <= 11 && !defined(__OpenBSD__) using ::gets; #endif using ::scanf; |