diff options
author | damico <none@none> | 2007-09-14 14:36:45 -0700 |
---|---|---|
committer | damico <none@none> | 2007-09-14 14:36:45 -0700 |
commit | 35ba209ea2294e52335d6bd3853eb811f66428f8 (patch) | |
tree | 24d8b5db07a40504f0b986450329036156486347 /usr/src | |
parent | 30a5e8fa1253cb33980ee4514743cf683f584b4e (diff) | |
download | illumos-joyent-35ba209ea2294e52335d6bd3853eb811f66428f8.tar.gz |
6602489 <unistd.h> typo: __EXTENSIONS_ should be __EXTENSIONS__
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/head/unistd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/head/unistd.h b/usr/src/head/unistd.h index 90dcac4788..ec8c3b0891 100644 --- a/usr/src/head/unistd.h +++ b/usr/src/head/unistd.h @@ -23,7 +23,7 @@ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -267,7 +267,7 @@ extern char *crypt(const char *, const char *); defined(__EXTENSIONS__) extern char *ctermid(char *); #endif /* (!defined(_POSIX_C_SOURCE) ... */ -#if !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) || defined(__EXTENSIONS_) +#if !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) || defined(__EXTENSIONS__) extern char *ctermid_r(char *); #endif /* !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) ... */ /* Marked as LEGACY in SUSv2 and removed in SUSv3 */ @@ -597,7 +597,7 @@ extern char *crypt(); #if !defined(_POSIX_C_SOURCE) || defined(_XPG3) || defined(__EXTENSIONS__) extern char *ctermid(); #endif /* (!defined(_POSIX_C_SOURCE) || defined(_XPG3)... */ -#if !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) || defined(__EXTENSIONS_) +#if !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) || defined(__EXTENSIONS__) extern char *ctermid_r(); #endif /* !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) ... */ #if !defined(_XPG6) || defined(__EXTENSIONS__) |