diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2013-12-13 20:48:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2013-12-13 20:48:40 +0000 |
commit | b71227db9f5c082afd50591bb925090b54f04f23 (patch) | |
tree | a12508b9c60d15e499d51bfbc7ea854f08d43209 /include/stdlib.h | |
parent | 12de9b6c48e8f37509578f198aff591df94c326d (diff) |
Fix typo; 200809 not 20080 for __POSIX_VISIBLE. Noticed by jca@
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 4 |
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 |