From 270de5c38084d35fe9c8c9f2e86949d76b35be7e Mon Sep 17 00:00:00 2001 From: millert <> Date: Fri, 13 Dec 2013 20:48:39 +0000 Subject: [PATCH] Fix typo; 200809 not 20080 for __POSIX_VISIBLE. Noticed by jca@ --- src/include/stdlib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 971388aa..d50946a9 100644 --- a/src/include/stdlib.h +++ b/src/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