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