summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2013-12-13 20:48:39 +0000
committermillert <millert@openbsd.org>2013-12-13 20:48:39 +0000
commit9a476230f229c3ee15c03bbfe51656fdd0c7fcd3 (patch)
tree2a03a0a073a78549c771a82421853fd541c2fe84
parentInitial version of a manpage for unattended install/upgrade. (diff)
downloadwireguard-openbsd-9a476230f229c3ee15c03bbfe51656fdd0c7fcd3.tar.xz
wireguard-openbsd-9a476230f229c3ee15c03bbfe51656fdd0c7fcd3.zip
Fix typo; 200809 not 20080 for __POSIX_VISIBLE. Noticed by jca@
-rw-r--r--include/stdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 971388aadb1..d50946a977e 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.54 2013/11/22 21:32:49 millert Exp $ */
+/* $OpenBSD: stdlib.h,v 1.55 2013/12/13 20:48:39 millert Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -248,7 +248,7 @@ int posix_openpt(int);
char *mkdtemp(char *);
#endif
-#if __XPG_VISIBLE >= 420 || __POSIX_VISIBLE >= 20080
+#if __XPG_VISIBLE >= 420 || __POSIX_VISIBLE >= 200809
int getsubopt(char **, char * const *, char **);
#endif