summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2016-05-23 00:18:56 +0000
committerguenther <guenther@openbsd.org>2016-05-23 00:18:56 +0000
commitfbe95b356396ba2cd9b02ba74d5500decce5730c (patch)
tree2211d61df290561f6492fed039808fc63436b80b /include
parentPlug mem leak in filter_proposal. ok djm@ (diff)
downloadwireguard-openbsd-fbe95b356396ba2cd9b02ba74d5500decce5730c.tar.xz
wireguard-openbsd-fbe95b356396ba2cd9b02ba74d5500decce5730c.zip
Stop supporting longjmperror(); it's not used, not portable, and the checks
longjmp performs can't really be relied upon, even after we got rid of the false positives... ok millert@ deraadt@
Diffstat (limited to 'include')
-rw-r--r--include/setjmp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/setjmp.h b/include/setjmp.h
index 1028019b493..c278650f209 100644
--- a/include/setjmp.h
+++ b/include/setjmp.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: setjmp.h,v 1.6 2012/09/26 00:09:48 brad Exp $ */
+/* $OpenBSD: setjmp.h,v 1.7 2016/05/23 00:18:56 guenther Exp $ */
/* $NetBSD: setjmp.h,v 1.11 1994/12/20 10:35:44 cgd Exp $ */
/*-
@@ -61,7 +61,6 @@ __dead void siglongjmp(sigjmp_buf, int);
#if __BSD_VISIBLE || __XPG_VISIBLE
__returns_twice int _setjmp(jmp_buf);
__dead void _longjmp(jmp_buf, int);
-void longjmperror(void);
#endif /* __BSD_VISIBLE || __XPG_VISIBLE */
__END_DECLS