1 /*
   2  * CDDL HEADER START
   3  *
   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright (c) 2013 Gary Mills
  24  *
  25  * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
  26  */
  27 
  28 /*      Copyright (c) 1988 AT&T     */
  29 /*        All Rights Reserved   */
  30 
  31 /* Copyright (c) 2013, OmniTI Computer Consulting, Inc. All rights reserved. */
  32 
  33 #ifndef _UNISTD_H
  34 #define _UNISTD_H
  35 
  36 #include <sys/feature_tests.h>
  37 
  38 #include <sys/types.h>
  39 #include <sys/unistd.h>
  40 
  41 #ifdef  __cplusplus
  42 extern "C" {
  43 #endif
  44 
  45 /* Symbolic constants for the "access" routine: */
  46 #define R_OK    4       /* Test for Read permission */
  47 #define W_OK    2       /* Test for Write permission */
  48 #define X_OK    1       /* Test for eXecute permission */
  49 #define F_OK    0       /* Test for existence of File */
  50 
  51 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
  52 #define F_ULOCK 0       /* Unlock a previously locked region */
  53 #define F_LOCK  1       /* Lock a region for exclusive use */
  54 #define F_TLOCK 2       /* Test and lock a region for exclusive use */
  55 #define F_TEST  3       /* Test a region for other processes locks */
  56 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
  57 
  58 /* Symbolic constants for the "lseek" routine: */
  59 
  60 #ifndef SEEK_SET
  61 #define SEEK_SET        0       /* Set file pointer to "offset" */
  62 #endif
  63 
  64 #ifndef SEEK_CUR
  65 #define SEEK_CUR        1       /* Set file pointer to current plus "offset" */
  66 #endif
  67 
  68 #ifndef SEEK_END
  69 #define SEEK_END        2       /* Set file pointer to EOF plus "offset" */
  70 #endif
  71 
  72 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
  73 #ifndef SEEK_DATA
  74 #define SEEK_DATA       3       /* Set file pointer to next data past offset */
  75 #endif
  76 
  77 #ifndef SEEK_HOLE
  78 #define SEEK_HOLE       4       /* Set file pointer to next hole past offset */
  79 #endif
  80 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
  81 
  82 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
  83 /* Path names: */
  84 #define GF_PATH "/etc/group"    /* Path name of the "group" file */
  85 #define PF_PATH "/etc/passwd"   /* Path name of the "passwd" file */
  86 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
  87 
  88 /*
  89  * compile-time symbolic constants,
  90  * Support does not mean the feature is enabled.
  91  * Use pathconf/sysconf to obtain actual configuration value.
  92  */
  93 
  94 /* Values unchanged in UNIX 03 */
  95 #define _POSIX_ASYNC_IO                 1
  96 #define _POSIX_JOB_CONTROL              1
  97 #define _POSIX_SAVED_IDS                1
  98 #define _POSIX_SYNC_IO                  1
  99 
 100 /*
 101  * POSIX.1b compile-time symbolic constants.
 102  */
 103 #if defined(_XPG6)
 104 #define _POSIX_ASYNCHRONOUS_IO          200112L
 105 #define _POSIX_FSYNC                    200112L
 106 #define _POSIX_MAPPED_FILES             200112L
 107 #define _POSIX_MEMLOCK                  200112L
 108 #define _POSIX_MEMLOCK_RANGE            200112L
 109 #define _POSIX_MEMORY_PROTECTION        200112L
 110 #define _POSIX_MESSAGE_PASSING          200112L
 111 #define _POSIX_PRIORITY_SCHEDULING      200112L
 112 #define _POSIX_REALTIME_SIGNALS         200112L
 113 #define _POSIX_SEMAPHORES               200112L
 114 #define _POSIX_SHARED_MEMORY_OBJECTS    200112L
 115 #define _POSIX_SYNCHRONIZED_IO          200112L
 116 #else
 117 #define _POSIX_ASYNCHRONOUS_IO          1
 118 #define _POSIX_FSYNC                    1
 119 #define _POSIX_MAPPED_FILES             1
 120 #define _POSIX_MEMLOCK                  1
 121 #define _POSIX_MEMLOCK_RANGE            1
 122 #define _POSIX_MEMORY_PROTECTION        1
 123 #define _POSIX_MESSAGE_PASSING          1
 124 #define _POSIX_PRIORITY_SCHEDULING      1
 125 #define _POSIX_REALTIME_SIGNALS         1
 126 #define _POSIX_SEMAPHORES               1
 127 #define _POSIX_SHARED_MEMORY_OBJECTS    1
 128 #define _POSIX_SYNCHRONIZED_IO          1
 129 #endif
 130 
 131 /*
 132  * POSIX.1c compile-time symbolic constants.
 133  */
 134 #if defined(_XPG6)
 135 #define _POSIX_THREAD_SAFE_FUNCTIONS            200112L
 136 #define _POSIX_THREADS                          200112L
 137 #define _POSIX_THREAD_ATTR_STACKADDR            200112L
 138 #define _POSIX_THREAD_ATTR_STACKSIZE            200112L
 139 #define _POSIX_THREAD_PROCESS_SHARED            200112L
 140 #define _POSIX_THREAD_PRIORITY_SCHEDULING       200112L
 141 #define _POSIX_TIMERS                           200112L
 142 #else
 143 #define _POSIX_THREAD_SAFE_FUNCTIONS            1
 144 #define _POSIX_THREADS                          1
 145 #define _POSIX_THREAD_ATTR_STACKADDR            1
 146 #define _POSIX_THREAD_ATTR_STACKSIZE            1
 147 #define _POSIX_THREAD_PROCESS_SHARED            1
 148 #define _POSIX_THREAD_PRIORITY_SCHEDULING       1
 149 #define _POSIX_TIMERS                           1
 150 #endif
 151 
 152 /* New in UNIX 03 */
 153 #define _POSIX_ADVISORY_INFO                    200112L
 154 #define _POSIX_BARRIERS                         200112L
 155 #define _POSIX_CLOCK_SELECTION                  200112L
 156 #define _POSIX_IPV6                             200112L
 157 #define _POSIX_MONOTONIC_CLOCK                  200112L
 158 #define _POSIX_RAW_SOCKETS                      200112L
 159 #define _POSIX_READER_WRITER_LOCKS              200112L
 160 #define _POSIX_SPAWN                            200112L
 161 #define _POSIX_SPIN_LOCKS                       200112L
 162 #define _POSIX_TIMEOUTS                         200112L
 163 
 164 /*
 165  * Support for the POSIX.1 mutex protocol attribute. For realtime applications
 166  * which need mutexes to support priority inheritance/ceiling.
 167  */
 168 #if defined(_XPG6)
 169 #define _POSIX_THREAD_PRIO_INHERIT              200112L
 170 #define _POSIX_THREAD_PRIO_PROTECT              200112L
 171 #else
 172 #define _POSIX_THREAD_PRIO_INHERIT              1
 173 #define _POSIX_THREAD_PRIO_PROTECT              1
 174 #endif
 175 
 176 #ifndef _POSIX_VDISABLE
 177 #define _POSIX_VDISABLE         0
 178 #endif
 179 
 180 #ifndef NULL
 181 #if defined(_LP64)
 182 #define NULL    0L
 183 #else
 184 #define NULL    0
 185 #endif
 186 #endif
 187 
 188 #define STDIN_FILENO    0
 189 #define STDOUT_FILENO   1
 190 #define STDERR_FILENO   2
 191 
 192 /*
 193  * Large File Summit-related announcement macros.  The system supports both
 194  * the additional and transitional Large File Summit interfaces.  (The final
 195  * two macros provide a finer granularity breakdown of _LFS64_LARGEFILE.)
 196  */
 197 #define _LFS_LARGEFILE          1
 198 #define _LFS64_LARGEFILE        1
 199 #define _LFS64_STDIO            1
 200 #define _LFS64_ASYNCHRONOUS_IO  1
 201 
 202 /* large file compilation environment setup */
 203 #if !defined(_LP64) && _FILE_OFFSET_BITS == 64
 204 #ifdef  __PRAGMA_REDEFINE_EXTNAME
 205 #pragma redefine_extname        ftruncate       ftruncate64
 206 #pragma redefine_extname        lseek           lseek64
 207 #pragma redefine_extname        pread           pread64
 208 #pragma redefine_extname        pwrite          pwrite64
 209 #pragma redefine_extname        truncate        truncate64
 210 #pragma redefine_extname        lockf           lockf64
 211 #pragma redefine_extname        tell            tell64
 212 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 213 #define ftruncate                       ftruncate64
 214 #define lseek                           lseek64
 215 #define pread                           pread64
 216 #define pwrite                          pwrite64
 217 #define truncate                        truncate64
 218 #define lockf                           lockf64
 219 #define tell                            tell64
 220 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 221 #endif  /* !_LP64 && _FILE_OFFSET_BITS == 64 */
 222 
 223 /* In the LP64 compilation environment, the APIs are already large file */
 224 #if defined(_LP64) && defined(_LARGEFILE64_SOURCE)
 225 #ifdef  __PRAGMA_REDEFINE_EXTNAME
 226 #pragma redefine_extname        ftruncate64     ftruncate
 227 #pragma redefine_extname        lseek64         lseek
 228 #pragma redefine_extname        pread64         pread
 229 #pragma redefine_extname        pwrite64        pwrite
 230 #pragma redefine_extname        truncate64      truncate
 231 #pragma redefine_extname        lockf64         lockf
 232 #pragma redefine_extname        tell64          tell
 233 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 234 #define ftruncate64                     ftruncate
 235 #define lseek64                         lseek
 236 #define pread64                         pread
 237 #define pwrite64                        pwrite
 238 #define truncate64                      truncate
 239 #define lockf64                         lockf
 240 #define tell64                          tell
 241 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 242 #endif  /* _LP64 && _LARGEFILE64_SOURCE */
 243 
 244 #if defined(__STDC__)
 245 
 246 extern int access(const char *, int);
 247 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 248 extern int acct(const char *);
 249 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 250 extern unsigned alarm(unsigned);
 251 /* Marked as LEGACY in SUSv2 and removed in SUSv3 */
 252 #if !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2) && !defined(_XPG6)) || \
 253         defined(__EXTENSIONS__)
 254 extern int brk(void *);
 255 #endif /* !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2)... */
 256 extern int chdir(const char *);
 257 extern int chown(const char *, uid_t, gid_t);
 258 /* Marked as LEGACY in SUSv2 and removed in SUSv3 */
 259 #if !defined(_POSIX_C_SOURCE) || (defined(_XOPEN_SOURCE) && \
 260         !defined(_XPG6)) || defined(__EXTENSIONS__)
 261 extern int chroot(const char *);
 262 #endif /* !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE))... */
 263 extern int close(int);
 264 #if defined(_XPG4) || defined(__EXTENSIONS__)
 265 extern size_t confstr(int, char *, size_t);
 266 extern char *crypt(const char *, const char *);
 267 #endif /* defined(_XPG4) || defined(__EXTENSIONS__) */
 268 #if !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
 269         defined(__EXTENSIONS__)
 270 extern char *ctermid(char *);
 271 #endif /* (!defined(_POSIX_C_SOURCE) ... */
 272 #if !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) || defined(__EXTENSIONS__)
 273 extern char *ctermid_r(char *);
 274 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) ... */
 275 /* Marked as LEGACY in SUSv2 and removed in SUSv3 */
 276 #if !defined(_XPG6) || defined(__EXTENSIONS__)
 277 extern char *cuserid(char *);
 278 #endif
 279 extern int dup(int);
 280 extern int dup2(int, int);
 281 extern int dup3(int, int, int);
 282 #if defined(_XPG4) || defined(__EXTENSIONS__)
 283 extern void encrypt(char *, int);
 284 #endif /* defined(XPG4) || defined(__EXTENSIONS__) */
 285 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 286 extern void endusershell(void);
 287 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 288 extern int execl(const char *, const char *, ...);
 289 extern int execle(const char *, const char *, ...);
 290 extern int execlp(const char *, const char *, ...);
 291 extern int execv(const char *, char *const *);
 292 extern int execve(const char *, char *const *, char *const *);
 293 extern int execvp(const char *, char *const *);
 294 extern void _exit(int)
 295         __NORETURN;
 296 /*
 297  * The following fattach prototype is duplicated in <stropts.h>. The
 298  * duplication is necessitated by XPG4.2 which requires the prototype
 299  * be defined in <stropts.h>.
 300  */
 301 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 302 extern int fattach(int, const char *);
 303 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 304 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 305 extern int fchdir(int);
 306 extern int fchown(int, uid_t, gid_t);
 307 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 308 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 309 extern int fchroot(int);
 310 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 311 #if !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2) || \
 312         defined(__EXTENSIONS__)
 313 extern int fdatasync(int);
 314 #endif /* !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2)... */
 315 /*
 316  * The following fdetach prototype is duplicated in <stropts.h>. The
 317  * duplication is necessitated by XPG4.2 which requires the prototype
 318  * be defined in <stropts.h>.
 319  */
 320 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 321 extern int fdetach(const char *);
 322 #endif /* !defined(__XOPEN_OR_POSIX)... */
 323 extern pid_t fork(void);
 324 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 325 extern pid_t fork1(void);
 326 extern pid_t forkall(void);
 327 #endif /* !defined(__XOPEN_OR_POSIX)... */
 328 extern long fpathconf(int, int);
 329 #if !defined(_POSIX_C_SOURCE) || (_POSIX_C_SOURCE > 2) || \
 330         defined(__EXTENSIONS__)
 331 extern int fsync(int);
 332 #endif /* !defined(_POSIX_C_SOURCE) || (_POSIX_C_SOURCE > 2)... */
 333 #if !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2) || defined(_XPG4_2) || \
 334         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 335         defined(__EXTENSIONS__)
 336 extern int ftruncate(int, off_t);
 337 #endif /* !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2)... */
 338 extern char *getcwd(char *, size_t);
 339 #if !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2) && !defined(_XPG6)) || \
 340         defined(__EXTENSIONS__)
 341 extern int getdtablesize(void);
 342 #endif
 343 extern gid_t getegid(void);
 344 extern uid_t geteuid(void);
 345 extern gid_t getgid(void);
 346 extern int getgroups(int, gid_t *);
 347 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 348 extern long gethostid(void);
 349 #endif
 350 #if defined(_XPG4_2)
 351 extern int gethostname(char *, size_t);
 352 #elif  !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 353 extern int gethostname(char *, int);
 354 #endif
 355 
 356 #ifndef __GETLOGIN_DEFINED      /* Avoid duplicate in stdlib.h */
 357 #define __GETLOGIN_DEFINED
 358 #ifndef __USE_LEGACY_LOGNAME__
 359 #ifdef  __PRAGMA_REDEFINE_EXTNAME
 360 #pragma redefine_extname getlogin getloginx
 361 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 362 extern char *getloginx(void);
 363 #define getlogin        getloginx
 364 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 365 #endif  /* __USE_LEGACY_LOGNAME__ */
 366 extern char *getlogin(void);
 367 #endif  /* __GETLOGIN_DEFINED */
 368 
 369 #if defined(_XPG4) || defined(__EXTENSIONS__)
 370 extern int  getopt(int, char *const *, const char *);
 371 extern char *optarg;
 372 extern int  opterr, optind, optopt;
 373 /* Marked as LEGACY in SUSv2 and removed in SUSv3 */
 374 #if !defined(_XPG6) || defined(__EXTENSIONS__)
 375 extern char *getpass(const char *);
 376 #endif
 377 #endif /* defined(_XPG4) || defined(__EXTENSIONS__) */
 378 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 379 /* Marked as LEGACY in SUSv2 and removed in SUSv3 */
 380 #if !defined(_XPG6) || defined(__EXTENSIONS__)
 381 extern int getpagesize(void);
 382 #endif
 383 extern pid_t getpgid(pid_t);
 384 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 385 extern pid_t getpid(void);
 386 extern pid_t getppid(void);
 387 extern pid_t getpgrp(void);
 388 
 389 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 390 char *gettxt(const char *, const char *);
 391 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 392 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 393 extern pid_t getsid(pid_t);
 394 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 395 extern uid_t getuid(void);
 396 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 397 extern char *getusershell(void);
 398 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 399 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 400 extern char *getwd(char *);
 401 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 402 /*
 403  * The following ioctl prototype is duplicated in <stropts.h>. The
 404  * duplication is necessitated by XPG4.2 which requires the prototype
 405  * be defined in <stropts.h>.
 406  */
 407 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 408 extern int ioctl(int, int, ...);
 409 extern int isaexec(const char *, char *const *, char *const *);
 410 extern int issetugid(void);
 411 #endif
 412 extern int isatty(int);
 413 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 414 extern int lchown(const char *, uid_t, gid_t);
 415 #endif
 416 extern int link(const char *, const char *);
 417 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 418 extern offset_t llseek(int, offset_t, int);
 419 #endif
 420 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || \
 421         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 422         defined(__EXTENSIONS__)
 423 extern int lockf(int, int, off_t);
 424 #endif
 425 extern off_t lseek(int, off_t, int);
 426 #if !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
 427         defined(__EXTENSIONS__)
 428 extern int nice(int);
 429 #endif /* !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE)... */
 430 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 431 extern int mincore(caddr_t, size_t, char *);
 432 #endif
 433 extern long pathconf(const char *, int);
 434 extern int pause(void);
 435 extern int pipe(int *);
 436 extern int pipe2(int *, int);
 437 #if !defined(_POSIX_C_SOURCE) || defined(_XPG5) || \
 438         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 439         defined(__EXTENSIONS__)
 440 extern ssize_t pread(int, void *, size_t, off_t);
 441 #endif
 442 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 443 extern void profil(unsigned short *, size_t, unsigned long, unsigned int);
 444 #endif
 445 /*
 446  * pthread_atfork() is also declared in <pthread.h> as per SUSv3. The
 447  * declarations are identical. A change to either one may also require
 448  * appropriate namespace updates in order to avoid redeclaration
 449  * warnings in the case where both prototypes are exposed via inclusion
 450  * of both <pthread.h> and <unistd.h>.
 451  */
 452 #if !defined(__XOPEN_OR_POSIX) || \
 453         ((_POSIX_C_SOURCE > 2) && !defined(_XPG6)) || \
 454         defined(__EXTENSIONS__)
 455 extern int pthread_atfork(void (*) (void), void (*) (void), void (*) (void));
 456 #endif /* !defined(__XOPEN_OR_POSIX) || ((_POSIX_C_SOURCE > 2) ... */
 457 #if !defined(_LP64) && \
 458         (!defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__))
 459 extern int ptrace(int, pid_t, int, int);
 460 #endif
 461 #if !defined(_POSIX_C_SOURCE) || defined(_XPG5) || \
 462         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 463         defined(__EXTENSIONS__)
 464 extern ssize_t pwrite(int, const void *, size_t, off_t);
 465 #endif
 466 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 467 /* per RFC 3542; This is also defined in netdb.h */
 468 extern int rcmd_af(char **, unsigned short, const char *, const char *,
 469         const char *, int *, int);
 470 #endif
 471 extern ssize_t read(int, void *, size_t);
 472 #if !defined(__XOPEN_OR_POSIX) || \
 473         defined(_XPG4_2) || defined(__EXTENSIONS__)
 474 extern ssize_t readlink(const char *_RESTRICT_KYWD, char *_RESTRICT_KYWD,
 475         size_t);
 476 #endif
 477 #if (!defined(__XOPEN_OR_POSIX) || (defined(_XPG3) && !defined(_XPG4))) || \
 478         defined(__EXTENSIONS__)
 479 #if __cplusplus >= 199711L
 480 namespace std {
 481 #endif
 482 extern int rename(const char *, const char *);
 483 #if __cplusplus >= 199711L
 484 } /* end of namespace std */
 485 
 486 using std::rename;
 487 #endif /* __cplusplus >= 199711L */
 488 #endif /* (!defined(__XOPEN_OR_POSIX) || (defined(_XPG3)... */
 489 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 490 extern int resolvepath(const char *, char *, size_t);
 491 /* per RFC 3542; This is also defined in netdb.h */
 492 extern int rexec_af(char **, unsigned short, const char *, const char *,
 493         const char *, int *, int);
 494 #endif /* !defined(__XOPEN_OR_POSIX)|| defined(__EXTENSIONS__) */
 495 extern int rmdir(const char *);
 496 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 497 /* per RFC 3542; This is also defined in netdb.h */
 498 extern int rresvport_af(int *, int);
 499 #endif
 500 
 501 #if !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2) && !defined(_XPG6)) || \
 502         defined(__EXTENSIONS__)
 503 extern void *sbrk(intptr_t);
 504 #endif /* !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2)... */
 505 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG6) || defined(__EXTENSIONS__)
 506 extern int setegid(gid_t);
 507 extern int seteuid(uid_t);
 508 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG6) ... */
 509 extern int setgid(gid_t);
 510 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 511 extern int setgroups(int, const gid_t *);
 512 extern int sethostname(char *, int);
 513 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 514 extern int setpgid(pid_t, pid_t);
 515 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 516 extern pid_t setpgrp(void);
 517 extern int setregid(gid_t, gid_t);
 518 extern int setreuid(uid_t, uid_t);
 519 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 520 extern pid_t setsid(void);
 521 extern int setuid(uid_t);
 522 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 523 extern void setusershell(void);
 524 #endif /* !defined(__XOPEN_OR_POSIX)|| defined(__EXTENSIONS__) */
 525 extern unsigned sleep(unsigned);
 526 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 527 extern int stime(const time_t *);
 528 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 529 #if defined(_XPG4)
 530 /* __EXTENSIONS__ makes the SVID Third Edition prototype in stdlib.h visible */
 531 extern void swab(const void *_RESTRICT_KYWD, void *_RESTRICT_KYWD, ssize_t);
 532 #endif /* defined(_XPG4) */
 533 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 534 extern int symlink(const char *, const char *);
 535 extern void sync(void);
 536 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) */
 537 #if defined(_XPG5) && !defined(_XPG6)
 538 #ifdef __PRAGMA_REDEFINE_EXTNAME
 539 #pragma redefine_extname sysconf __sysconf_xpg5
 540 #else /* __PRAGMA_REDEFINE_EXTNAME */
 541 #define sysconf __sysconf_xpg5
 542 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 543 #endif /* defined(_XPG5) && !defined(_XPG6) */
 544 extern long sysconf(int);
 545 extern pid_t tcgetpgrp(int);
 546 extern int tcsetpgrp(int, pid_t);
 547 #if !defined(__XOPEN_OR_POSIX) || \
 548         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 549         defined(__EXTENSIONS__)
 550 extern off_t tell(int);
 551 #endif /* !defined(__XOPEN_OR_POSIX)... */
 552 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || \
 553         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 554         defined(__EXTENSIONS__)
 555 extern int truncate(const char *, off_t);
 556 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 557 extern char *ttyname(int);
 558 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 559 extern useconds_t ualarm(useconds_t, useconds_t);
 560 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 561 extern int unlink(const char *);
 562 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 563 extern int usleep(useconds_t);
 564 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 565 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 566 extern pid_t vfork(void) __RETURNS_TWICE;
 567 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 568 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 569 extern void vhangup(void);
 570 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 571 extern ssize_t write(int, const void *, size_t);
 572 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 573 extern void yield(void);
 574 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 575 
 576 #if !defined(__XOPEN_OR_POSIX) || defined(_ATFILE_SOURCE) || \
 577         defined(__EXTENSIONS__)
 578         /* || defined(_XPG7) */
 579 extern int faccessat(int, const char *, int, int);
 580 extern int fchownat(int, const char *, uid_t, gid_t, int);
 581 extern int linkat(int, const char *, int, const char *, int);
 582 extern ssize_t readlinkat(int, const char *_RESTRICT_KYWD,
 583         char *_RESTRICT_KYWD, size_t);
 584 extern int renameat(int, const char *, int, const char *);
 585 extern int symlinkat(const char *, int, const char *);
 586 extern int unlinkat(int, const char *, int);
 587 #endif  /* !defined(__XOPEN_OR_POSIX) || defined(_ATFILE_SOURCE)... */
 588 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 589 extern int get_nprocs(void);
 590 extern int get_nprocs_conf(void);
 591 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 592 
 593 /* transitional large file interface versions */
 594 #if     defined(_LARGEFILE64_SOURCE) && !((_FILE_OFFSET_BITS == 64) && \
 595             !defined(__PRAGMA_REDEFINE_EXTNAME))
 596 extern int ftruncate64(int, off64_t);
 597 extern off64_t lseek64(int, off64_t, int);
 598 extern ssize_t  pread64(int, void *, size_t, off64_t);
 599 extern ssize_t  pwrite64(int, const void *, size_t, off64_t);
 600 extern off64_t  tell64(int);
 601 extern int      truncate64(const char *, off64_t);
 602 extern int      lockf64(int, int, off64_t);
 603 #endif  /* _LARGEFILE64_SOURCE */
 604 
 605 #else  /* __STDC__ */
 606 
 607 extern int access();
 608 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 609 extern int acct();
 610 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 611 extern unsigned alarm();
 612 #if !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2) && !defined(_XPG6)) || \
 613         defined(__EXTENSIONS__)
 614 extern int brk();
 615 #endif /* !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2)... */
 616 extern int chdir();
 617 extern int chown();
 618 #if !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
 619         defined(__EXTENSIONS__)
 620 extern int chroot();
 621 #endif /* (!defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE)... */
 622 extern int close();
 623 #if defined(_XPG4) || defined(__EXTENSIONS__)
 624 extern size_t confstr();
 625 extern char *crypt();
 626 #endif /* defined(XPG4) || defined(__EXTENSIONS__) */
 627 #if !defined(_POSIX_C_SOURCE) || defined(_XPG3) || defined(__EXTENSIONS__)
 628 extern char *ctermid();
 629 #endif /* (!defined(_POSIX_C_SOURCE) || defined(_XPG3)... */
 630 #if !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) || defined(__EXTENSIONS__)
 631 extern char *ctermid_r();
 632 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_REENTRANT) ... */
 633 #if !defined(_XPG6) || defined(__EXTENSIONS__)
 634 extern char *cuserid();
 635 #endif
 636 extern int dup();
 637 extern int dup2();
 638 extern int dup3();
 639 #if defined(_XPG4) || defined(__EXTENSIONS__)
 640 extern void encrypt();
 641 #endif /* defined(_XPG4) || defined(__EXTENSIONS__) */
 642 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 643 extern void endusershell();
 644 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 645 extern int execl();
 646 extern int execle();
 647 extern int execlp();
 648 extern int execv();
 649 extern int execve();
 650 extern int execvp();
 651 extern void _exit();
 652 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 653 extern int fattach();
 654 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 655 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 656 extern int fchdir();
 657 extern int fchown();
 658 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 659 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 660 extern int fchroot();
 661 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 662 #if !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2) || \
 663         defined(__EXTENSIONS__)
 664 extern int fdatasync();
 665 #endif /* !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2)... */
 666 #if !defined(__XOPEN_OR_POSIX)
 667 extern int fdetach();
 668 #endif /* !defined(__XOPEN_OR_POSIX) */
 669 extern pid_t fork();
 670 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 671 extern pid_t fork1();
 672 extern pid_t forkall();
 673 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 674 extern long fpathconf();
 675 #if !defined(_POSIX_C_SOURCE) || (_POSIX_C_SOURCE > 2) || \
 676         defined(__EXTENSIONS__)
 677 extern int fsync();
 678 #endif /* !defined(_POSIX_C_SOURCE) || (_POSIX_C_SOURCE > 2)... */
 679 #if !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE > 2) || defined(_XPG4_2) || \
 680         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 681         defined(__EXTENSIONS__)
 682 extern int ftruncate();
 683 #endif /* !defined(__XOPEN_OR_POSIX) (_POSIX_C_SOURCE > 2)... */
 684 extern char *getcwd();
 685 #if !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2) && !defined(_XPG6)) || \
 686         defined(__EXTENSIONS__)
 687 extern int getdtablesize();
 688 #endif
 689 extern gid_t getegid();
 690 extern uid_t geteuid();
 691 extern gid_t getgid();
 692 extern int getgroups();
 693 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 694 extern long gethostid();
 695 #endif
 696 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 697 extern int gethostname();
 698 #endif
 699 
 700 #ifndef __GETLOGIN_DEFINED      /* Avoid duplicate in stdlib.h */
 701 #define __GETLOGIN_DEFINED
 702 #ifndef __USE_LEGACY_LOGNAME__
 703 #ifdef __PRAGMA_REDEFINE_EXTNAME
 704 #pragma redefine_extname getlogin       getloginx
 705 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 706 extern char *getloginx();
 707 #define getlogin        getloginx
 708 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 709 #endif  /* __USE_LEGACY_LOGNAME__ */
 710 extern char *getlogin();
 711 #endif  /* __GETLOGIN_DEFINED */
 712 
 713 #if defined(_XPG4) || defined(__EXTENSIONS__)
 714 extern int  getopt();
 715 extern char *optarg;
 716 extern int  opterr, optind, optopt;
 717 #if !defined(_XPG6) || defined(__EXTENSIONS__)
 718 extern char *getpass();
 719 #endif
 720 #endif /* defined(_XPG4) || defined(__EXTENSIONS__) */
 721 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 722 #if !defined(_XPG6) || defined(__EXTENSIONS__)
 723 extern int getpagesize();
 724 #endif
 725 extern pid_t getpgid();
 726 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 727 extern pid_t getpid();
 728 extern pid_t getppid();
 729 extern pid_t getpgrp();
 730 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 731 char *gettxt();
 732 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 733 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 734 extern pid_t getsid();
 735 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) */
 736 extern uid_t getuid();
 737 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 738 extern char *getusershell();
 739 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 740 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 741 extern char *getwd();
 742 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 743 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 744 extern int ioctl();
 745 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 746 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 747 extern int isaexec();
 748 extern int issetugid();
 749 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 750 extern int isatty();
 751 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 752 extern int lchown();
 753 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) */
 754 extern int link();
 755 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 756 extern offset_t llseek();
 757 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 758 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || \
 759         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 760         defined(__EXTENSIONS__)
 761 extern int lockf();
 762 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 763 extern off_t lseek();
 764 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 765 extern int mincore();
 766 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 767 #if !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
 768         defined(__EXTENSIONS__)
 769 extern int nice();
 770 #endif /* !defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE)... */
 771 extern long pathconf();
 772 extern int pause();
 773 extern int pipe();
 774 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG5) || \
 775         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 776         defined(__EXTENSIONS__)
 777 extern ssize_t pread();
 778 #endif
 779 #if !defined(_LP64) && \
 780         (!defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__))
 781 extern void profil();
 782 extern int ptrace();
 783 #endif
 784 #if !defined(__XOPEN_OR_POSIX) || \
 785         ((_POSIX_C_SOURCE > 2) && !defined(_XPG6)) || \
 786         defined(__EXTENSIONS__)
 787 extern int pthread_atfork();
 788 #endif /* !defined(__XOPEN_OR_POSIX) || ((_POSIX_C_SOURCE > 2) ...  */
 789 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG5) || \
 790         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 791         defined(__EXTENSIONS__)
 792 extern ssize_t pwrite();
 793 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG5) */
 794 extern ssize_t read();
 795 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 796 /* per RFC 3542; This is also defined in netdb.h */
 797 extern int rcmd_af();
 798 #endif
 799 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 800 extern ssize_t readlink();
 801 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 802 #if (!defined(__XOPEN_OR_POSIX) || (defined(_XPG3) && !defined(_XPG4))) || \
 803         defined(__EXTENSIONS__)
 804 extern int rename();
 805 #endif /* (!defined(__XOPEN_OR_POSIX) || (defined(_XPG3)... */
 806 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 807 extern int resolvepath();
 808 /* per RFC 3542; This is also defined in netdb.h */
 809 extern int rexec_af();
 810 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 811 extern int rmdir();
 812 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 813 /* per RFC 3542; This is also defined in netdb.h */
 814 extern int rresvport_af();
 815 #endif
 816 #if !defined(__XOPEN_OR_POSIX) || (defined(_XPG4_2) && !defined(_XPG6)) || \
 817         defined(__EXTENSIONS__)
 818 extern void *sbrk();
 819 #endif /* !defined(__XOPEN_OR_POSIX)|| (defined(_XPG4_2)... */
 820 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG6) || defined(__EXTENSIONS__)
 821 extern int setegid();
 822 extern int seteuid();
 823 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG6) ... */
 824 extern int setgid();
 825 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 826 extern int setgroups();
 827 extern int sethostname();
 828 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 829 extern int setpgid();
 830 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 831 extern pid_t setpgrp();
 832 extern int setregid();
 833 extern int setreuid();
 834 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 835 extern pid_t setsid();
 836 extern int setuid();
 837 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 838 extern void setusershell();
 839 #endif /* !defined(__XOPEN_OR_POSIX)|| defined(__EXTENSIONS__) */
 840 extern unsigned sleep();
 841 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 842 extern int stime();
 843 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 844 #if defined(_XPG4)
 845 /* __EXTENSIONS__ makes the SVID Third Edition prototype in stdlib.h visible */
 846 extern void swab();
 847 #endif /* defined(_XPG4) */
 848 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 849 extern int symlink();
 850 extern void sync();
 851 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 852 #if defined(_XPG5)
 853 #ifdef __PRAGMA_REDEFINE_EXTNAME
 854 #pragma redefine_extname sysconf __sysconf_xpg5
 855 extern long sysconf();
 856 #else /* __PRAGMA_REDEFINE_EXTNAME */
 857 extern long __sysconf_xpg5();
 858 #define sysconf __sysconf_xpg5
 859 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 860 #endif  /* defined(_XPG5) */
 861 extern pid_t tcgetpgrp();
 862 extern int tcsetpgrp();
 863 #if !defined(__XOPEN_OR_POSIX) || \
 864         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 865         defined(__EXTENSIONS__)
 866 extern off_t tell();
 867 #endif /* !defined(__XOPEN_OR_POSIX)... */
 868 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || \
 869         (defined(_LARGEFILE_SOURCE) && _FILE_OFFSET_BITS == 64) || \
 870         defined(__EXTENSIONS__)
 871 extern int truncate();
 872 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 873 extern char *ttyname();
 874 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 875 extern useconds_t ualarm();
 876 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 877 extern int unlink();
 878 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 879 extern int usleep();
 880 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 881 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 882 extern pid_t vfork();
 883 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 884 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 885 extern void vhangup();
 886 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 887 extern ssize_t write();
 888 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 889 extern void yield();
 890 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 891 
 892 #if !defined(__XOPEN_OR_POSIX) || defined(_ATFILE_SOURCE) || \
 893         defined(__EXTENSIONS__)
 894         /* || defined(_XPG7) */
 895 extern int faccessat();
 896 extern int fchownat();
 897 extern int linkat();
 898 extern ssize_t readlinkat();
 899 extern int renameat();
 900 extern int symlinkat();
 901 extern int unlinkat();
 902 #endif  /* !defined(__XOPEN_OR_POSIX) || defined(_ATFILE_SOURCE)... */
 903 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
 904 extern int get_nprocs();
 905 extern int get_nprocs_conf();
 906 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
 907 
 908 /* transitional large file interface versions */
 909 #if     defined(_LARGEFILE64_SOURCE) && !((_FILE_OFFSET_BITS == 64) && \
 910             !defined(__PRAGMA_REDEFINE_EXTNAME))
 911 extern int ftruncate64();
 912 extern off64_t lseek64();
 913 extern ssize_t pread64();
 914 extern ssize_t pwrite64();
 915 extern off64_t tell64();
 916 extern int truncate64();
 917 extern int lockf64();
 918 #endif  /* _LARGEFILE64_SOURCE */
 919 
 920 #endif /* __STDC__ */
 921 
 922 #if !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2) || defined(__EXTENSIONS__)
 923 #pragma unknown_control_flow(vfork)
 924 #endif /* !defined(__XOPEN_OR_POSIX) || defined(_XPG4_2)... */
 925 
 926 /*
 927  * getlogin_r() & ttyname_r() prototypes are defined here.
 928  */
 929 
 930 /*
 931  * Previous releases of Solaris, starting at 2.3, provided definitions of
 932  * various functions as specified in POSIX.1c, Draft 6.  For some of these
 933  * functions, the final POSIX 1003.1c standard had a different number of
 934  * arguments and return values.
 935  *
 936  * The following segment of this header provides support for the standard
 937  * interfaces while supporting applications written under earlier
 938  * releases.  The application defines appropriate values of the feature
 939  * test macros _POSIX_C_SOURCE and _POSIX_PTHREAD_SEMANTICS to indicate
 940  * whether it was written to expect the Draft 6 or standard versions of
 941  * these interfaces, before including this header.  This header then
 942  * provides a mapping from the source version of the interface to an
 943  * appropriate binary interface.  Such mappings permit an application
 944  * to be built from libraries and objects which have mixed expectations
 945  * of the definitions of these functions.
 946  *
 947  * For applications using the Draft 6 definitions, the binary symbol is the
 948  * same as the source symbol, and no explicit mapping is needed.  For the
 949  * standard interface, the function func() is mapped to the binary symbol
 950  * _posix_func().  The preferred mechanism for the remapping is a compiler
 951  * #pragma.  If the compiler does not provide such a #pragma, the header file
 952  * defines a static function func() which calls the _posix_func() version;
 953  * this has to be done instead of #define since POSIX specifies that an
 954  * application can #undef the symbol and still be bound to the correct
 955  * implementation.  Unfortunately, the statics confuse lint so we fallback to
 956  * #define in that case.
 957  *
 958  * NOTE: Support for the Draft 6 definitions is provided for compatibility
 959  * only.  New applications/libraries should use the standard definitions.
 960  */
 961 
 962 #if     defined(__EXTENSIONS__) || defined(_REENTRANT) || \
 963         !defined(__XOPEN_OR_POSIX) || (_POSIX_C_SOURCE - 0 >= 199506L) || \
 964         defined(_POSIX_PTHREAD_SEMANTICS)
 965 
 966 #if     defined(__STDC__)
 967 
 968 #if     (_POSIX_C_SOURCE - 0 >= 199506L) || defined(_POSIX_PTHREAD_SEMANTICS)
 969 
 970 #ifndef __USE_LEGACY_LOGNAME__
 971 #ifdef  __PRAGMA_REDEFINE_EXTNAME
 972 #pragma redefine_extname getlogin_r __posix_getloginx_r
 973 extern int getlogin_r(char *, int);
 974 #else   /* __PRAGMA_REDEFINE_EXTNAME */
 975 extern int __posix_getloginx_r(char *, int);
 976 #define getlogin_r      __posix_getloginx_r
 977 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
 978 #else   /* __USE_LEGACY_LOGNAME__ */
 979 #ifdef __PRAGMA_REDEFINE_EXTNAME
 980 #pragma redefine_extname getlogin_r __posix_getlogin_r
 981 extern int getlogin_r(char *, int);
 982 #else  /* __PRAGMA_REDEFINE_EXTNAME */
 983 extern int __posix_getlogin_r(char *, int);
 984 
 985 #ifdef __lint
 986 
 987 #define getlogin_r      __posix_getlogin_r
 988 
 989 #else /* !__lint */
 990 
 991 static int
 992 getlogin_r(char *__name, int __len)
 993 {
 994         return (__posix_getlogin_r(__name, __len));
 995 }
 996 
 997 #endif /* !__lint */
 998 #endif /* __PRAGMA_REDEFINE_EXTNAME */
 999 #endif  /* __USE_LEGACY_LOGNAME__ */
1000 
1001 #ifdef __PRAGMA_REDEFINE_EXTNAME
1002 #pragma redefine_extname ttyname_r __posix_ttyname_r
1003 extern int ttyname_r(int, char *, size_t);
1004 #else  /* __PRAGMA_REDEFINE_EXTNAME */
1005 extern int __posix_ttyname_r(int, char *, size_t);
1006 
1007 #ifdef __lint
1008 
1009 #define ttyname_r       __posix_ttyname_r
1010 
1011 #else /* !__lint */
1012 
1013 static int
1014 ttyname_r(int __fildes, char *__buf, size_t __size)
1015 {
1016         return (__posix_ttyname_r(__fildes, __buf, __size));
1017 }
1018 
1019 #endif /* !__lint */
1020 #endif /* __PRAGMA_REDEFINE_EXTNAME */
1021 
1022 #else  /* (_POSIX_C_SOURCE - 0 >= 199506L) || ... */
1023 
1024 #ifndef __USE_LEGACY_LOGNAME__
1025 #ifdef  __PRAGMA_REDEFINE_EXTNAME
1026 #pragma redefine_extname getlogin_r getloginx_r
1027 #else   /* __PRAGMA_REDEFINE_EXTNAME */
1028 extern char *getloginx_r(char *, int);
1029 #define getlogin_r      getloginx_r
1030 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
1031 #endif  /* __USE_LEGACY_LOGNAME__ */
1032 extern char *getlogin_r(char *, int);
1033 
1034 extern char *ttyname_r(int, char *, int);
1035 
1036 #endif /* (_POSIX_C_SOURCE - 0 >= 199506L) || ... */
1037 
1038 #else  /* __STDC__ */
1039 
1040 #if (_POSIX_C_SOURCE - 0 >= 199506L) || defined(_POSIX_PTHREAD_SEMANTICS)
1041 
1042 #ifndef __USE_LEGACY_LOGNAME__
1043 #ifdef  __PRAGMA_REDEFINE_EXTNAME
1044 #pragma redefine_extname getlogin_r __posix_getloginx_r
1045 extern int getlogin_r();
1046 #else   /* __PRAGMA_REDEFINE_EXTNAME */
1047 extern int __posix_getloginx_r();
1048 #define getlogin_r      __posix_getloginx_r
1049 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
1050 #else   /* __USE_LEGACY_LOGNAME__ */
1051 #ifdef __PRAGMA_REDEFINE_EXTNAME
1052 #pragma redefine_extname getlogin_r __posix_getlogin_r
1053 extern int getlogin_r();
1054 #else  /* __PRAGMA_REDEFINE_EXTNAME */
1055 extern int __posix_getlogin_r();
1056 
1057 #ifdef  __lint
1058 
1059 #define getlogin_r      __posix_getlogin_r
1060 
1061 #else /* !__lint */
1062 
1063 static int
1064 getlogin_r(__name, __len)
1065         char *__name;
1066         int __len;
1067 {
1068         return (__posix_getlogin_r(__name, __len));
1069 }
1070 #endif /* !__lint */
1071 #endif /* __PRAGMA_REDEFINE_EXTNAME */
1072 #endif  /* __USE_LEGACY_LOGNAME__ */
1073 
1074 #ifdef __PRAGMA_REDEFINE_EXTNAME
1075 #pragma redefine_extname ttyname_r __posix_ttyname_r
1076 extern int ttyname_r();
1077 #else  /* __PRAGMA_REDEFINE_EXTNAME */
1078 
1079 extern int __posix_ttyname_r();
1080 
1081 #ifdef  __lint
1082 
1083 #define ttyname_r       __posix_ttyname_r
1084 
1085 #else /* !__lint */
1086 
1087 ttyname_r(__fildes, __buf, __size)
1088         int __fildes;
1089         char *__buf;
1090         size_t __size;
1091 {
1092         return (__posix_ttyname_r(__fildes, __buf, __size));
1093 }
1094 #endif /* !__lint */
1095 #endif /* __PRAGMA_REDEFINE_EXTNAME */
1096 
1097 #else  /* (_POSIX_C_SOURCE - 0 >= 199506L) || ... */
1098 
1099 #ifndef __USE_LEGACY_LOGNAME__
1100 #ifdef __PRAGMA_REDEFINE_EXTNAME
1101 #pragma redefine_extname getlogin_r     getloginx_r
1102 #else   /* __PRAGMA_REDEFINE_EXTNAME */
1103 extern char *getloginx_r();
1104 #define getlogin_r      getloginx_r
1105 #endif  /* __PRAGMA_REDEFINE_EXTNAME */
1106 #endif  /* __USE_LEGACY_LOGNAME__ */
1107 extern char *getlogin_r();
1108 
1109 extern char *ttyname_r();
1110 
1111 #endif /* (_POSIX_C_SOURCE - 0 >= 199506L) || ... */
1112 
1113 #endif /* __STDC__ */
1114 
1115 #endif /* defined(__EXTENSIONS__) || defined(_REENTRANT)... */
1116 
1117 #ifdef  __cplusplus
1118 }
1119 #endif
1120 
1121 #endif /* _UNISTD_H */