2004-06-01 20:10:29 +04:00
|
|
|
/* $NetBSD: unistd.h,v 1.99 2004/06/01 16:10:29 kleink Exp $ */
|
1994-10-26 03:55:40 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1999-07-13 01:55:19 +04:00
|
|
|
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
|
1998-06-02 00:06:45 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Klaus Klein.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1998-02-03 00:07:13 +03:00
|
|
|
* Copyright (c) 1991, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:44:09 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-02-03 00:07:13 +03:00
|
|
|
* @(#)unistd.h 8.12 (Berkeley) 4/27/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UNISTD_H_
|
|
|
|
#define _UNISTD_H_
|
|
|
|
|
1999-07-13 01:55:19 +04:00
|
|
|
#include <machine/ansi.h>
|
2000-06-27 09:51:54 +04:00
|
|
|
#include <machine/int_types.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/cdefs.h>
|
1998-07-27 15:09:19 +04:00
|
|
|
#include <sys/featuretest.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/unistd.h>
|
|
|
|
|
1998-06-02 00:06:45 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IEEE Std 1003.1-90
|
|
|
|
*/
|
1993-06-16 21:17:30 +04:00
|
|
|
#define STDIN_FILENO 0 /* standard input file descriptor */
|
1993-03-21 12:45:37 +03:00
|
|
|
#define STDOUT_FILENO 1 /* standard output file descriptor */
|
|
|
|
#define STDERR_FILENO 2 /* standard error file descriptor */
|
|
|
|
|
2000-01-10 19:58:38 +03:00
|
|
|
#include <sys/null.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
1998-07-30 04:44:15 +04:00
|
|
|
__dead void _exit __P((int)) __attribute__((__noreturn__));
|
1993-03-21 12:45:37 +03:00
|
|
|
int access __P((const char *, int));
|
1998-07-28 04:28:29 +04:00
|
|
|
unsigned int alarm __P((unsigned int));
|
1993-03-21 12:45:37 +03:00
|
|
|
int chdir __P((const char *));
|
1998-06-02 00:06:45 +04:00
|
|
|
#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE)
|
|
|
|
int chown __P((const char *, uid_t, gid_t)) __RENAME(__posix_chown);
|
|
|
|
#else
|
|
|
|
int chown __P((const char *, uid_t, gid_t));
|
|
|
|
#endif /* defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) */
|
1993-03-21 12:45:37 +03:00
|
|
|
int close __P((int));
|
1993-09-22 01:53:31 +04:00
|
|
|
size_t confstr __P((int, char *, size_t));
|
2000-12-19 00:22:00 +03:00
|
|
|
#ifndef __CUSERID_DECLARED
|
|
|
|
#define __CUSERID_DECLARED
|
|
|
|
/* also declared in stdio.h */
|
1998-06-02 00:06:45 +04:00
|
|
|
char *cuserid __P((char *)); /* obsolete */
|
2000-12-19 00:22:00 +03:00
|
|
|
#endif /* __CUSERID_DECLARED */
|
1993-03-21 12:45:37 +03:00
|
|
|
int dup __P((int));
|
|
|
|
int dup2 __P((int, int));
|
|
|
|
int execl __P((const char *, const char *, ...));
|
|
|
|
int execle __P((const char *, const char *, ...));
|
|
|
|
int execlp __P((const char *, const char *, ...));
|
|
|
|
int execv __P((const char *, char * const *));
|
|
|
|
int execve __P((const char *, char * const *, char * const *));
|
|
|
|
int execvp __P((const char *, char * const *));
|
|
|
|
pid_t fork __P((void));
|
1998-02-03 00:07:13 +03:00
|
|
|
long fpathconf __P((int, int));
|
1993-03-21 12:45:37 +03:00
|
|
|
char *getcwd __P((char *, size_t));
|
|
|
|
gid_t getegid __P((void));
|
|
|
|
uid_t geteuid __P((void));
|
|
|
|
gid_t getgid __P((void));
|
1998-02-03 00:07:13 +03:00
|
|
|
int getgroups __P((int, gid_t []));
|
1998-07-27 13:33:44 +04:00
|
|
|
__aconst char *getlogin __P((void));
|
1993-05-16 05:51:51 +04:00
|
|
|
pid_t getpgrp __P((void));
|
1993-03-21 12:45:37 +03:00
|
|
|
pid_t getpid __P((void));
|
|
|
|
pid_t getppid __P((void));
|
|
|
|
uid_t getuid __P((void));
|
|
|
|
int isatty __P((int));
|
|
|
|
int link __P((const char *, const char *));
|
1998-02-03 00:07:13 +03:00
|
|
|
long pathconf __P((const char *, int));
|
1993-03-21 12:45:37 +03:00
|
|
|
int pause __P((void));
|
|
|
|
int pipe __P((int *));
|
|
|
|
ssize_t read __P((int, void *, size_t));
|
|
|
|
int rmdir __P((const char *));
|
|
|
|
int setgid __P((gid_t));
|
|
|
|
int setpgid __P((pid_t, pid_t));
|
|
|
|
pid_t setsid __P((void));
|
|
|
|
int setuid __P((uid_t));
|
1998-02-03 00:07:13 +03:00
|
|
|
unsigned int sleep __P((unsigned int));
|
|
|
|
long sysconf __P((int));
|
1993-03-21 12:45:37 +03:00
|
|
|
pid_t tcgetpgrp __P((int));
|
|
|
|
int tcsetpgrp __P((int, pid_t));
|
1998-07-27 13:33:44 +04:00
|
|
|
__aconst char *ttyname __P((int));
|
1993-03-21 12:45:37 +03:00
|
|
|
int unlink __P((const char *));
|
|
|
|
ssize_t write __P((int, const void *, size_t));
|
|
|
|
|
1998-06-02 00:06:45 +04:00
|
|
|
|
2000-04-02 10:32:41 +04:00
|
|
|
/*
|
|
|
|
* IEEE Std 1003.2-92, adopted in X/Open Portability Guide Issue 4 and later
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 2 || (_XOPEN_SOURCE - 0) >= 4 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2000-04-02 10:32:41 +04:00
|
|
|
int getopt __P((int, char * const [], const char *));
|
|
|
|
|
|
|
|
extern char *optarg; /* getopt(3) external variables */
|
|
|
|
extern int opterr;
|
|
|
|
extern int optind;
|
|
|
|
extern int optopt;
|
|
|
|
#endif
|
|
|
|
|
2003-04-14 12:12:11 +04:00
|
|
|
/*
|
2003-04-14 12:38:24 +04:00
|
|
|
* The Open Group Base Specifications, Issue 6; IEEE Std 1003.1-2001 (POSIX)
|
2003-04-14 12:12:11 +04:00
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 600 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2003-04-14 12:12:11 +04:00
|
|
|
int setegid __P((gid_t));
|
|
|
|
int seteuid __P((uid_t));
|
|
|
|
#endif
|
2000-04-02 10:32:41 +04:00
|
|
|
|
2000-12-19 00:22:00 +03:00
|
|
|
/*
|
|
|
|
* The following three syscalls are also defined in <sys/types.h>
|
|
|
|
* We protect them against double declarations.
|
|
|
|
*/
|
|
|
|
#ifndef __OFF_T_SYSCALLS_DECLARED
|
|
|
|
#define __OFF_T_SYSCALLS_DECLARED
|
|
|
|
off_t lseek __P((int, off_t, int));
|
|
|
|
int truncate __P((const char *, off_t));
|
1998-06-02 00:06:45 +04:00
|
|
|
/*
|
|
|
|
* IEEE Std 1003.1b-93,
|
|
|
|
* also found in X/Open Portability Guide >= Issue 4 Verion 2
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 199309L || \
|
1998-06-02 00:06:45 +04:00
|
|
|
(defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
(_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE)
|
1998-06-02 00:06:45 +04:00
|
|
|
int ftruncate __P((int, off_t));
|
1998-02-03 00:07:13 +03:00
|
|
|
#endif
|
2000-12-19 00:22:00 +03:00
|
|
|
#endif /* __OFF_T_SYSCALLS_DECLARED */
|
1998-06-02 00:06:45 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IEEE Std 1003.1b-93, adopted in X/Open CAE Specification Issue 5 Version 2
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 199309L || (_XOPEN_SOURCE - 0) >= 500 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
1998-06-06 00:45:39 +04:00
|
|
|
int fdatasync __P((int));
|
1998-06-02 00:06:45 +04:00
|
|
|
int fsync __P((int));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X/Open Portability Guide, all issues
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_XOPEN_SOURCE) || defined(_NETBSD_SOURCE)
|
1993-03-21 12:45:37 +03:00
|
|
|
int chroot __P((const char *));
|
1998-06-02 00:06:45 +04:00
|
|
|
int nice __P((int));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X/Open Portability Guide <= Issue 3
|
|
|
|
*/
|
|
|
|
#if defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE - 0) <= 3
|
|
|
|
int rename __P((const char *, const char *)) __RENAME(__posix_rename);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X/Open Portability Guide >= Issue 4
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_XOPEN_SOURCE - 0) >= 4 || defined(_NETBSD_SOURCE)
|
1998-07-27 13:33:44 +04:00
|
|
|
__aconst char *crypt __P((const char *, const char *));
|
1993-03-21 12:45:37 +03:00
|
|
|
int encrypt __P((char *, int));
|
1998-07-28 04:28:29 +04:00
|
|
|
char *getpass __P((const char *));
|
1998-06-02 00:06:45 +04:00
|
|
|
pid_t getsid __P((pid_t));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X/Open Portability Guide >= Issue 4 Version 2
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \
|
|
|
|
(_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE)
|
2000-06-27 09:51:54 +04:00
|
|
|
#ifndef intptr_t
|
|
|
|
typedef __intptr_t intptr_t;
|
2001-07-18 14:18:21 +04:00
|
|
|
#define intptr_t __intptr_t
|
1999-07-13 01:55:19 +04:00
|
|
|
#endif
|
|
|
|
|
1998-06-02 00:06:45 +04:00
|
|
|
#define F_ULOCK 0
|
|
|
|
#define F_LOCK 1
|
|
|
|
#define F_TLOCK 2
|
|
|
|
#define F_TEST 3
|
|
|
|
|
1999-03-09 23:33:22 +03:00
|
|
|
int brk __P((void *));
|
1993-03-21 12:45:37 +03:00
|
|
|
int fchdir __P((int));
|
1998-06-02 00:06:45 +04:00
|
|
|
#if defined(_XOPEN_SOURCE)
|
1998-07-27 13:58:49 +04:00
|
|
|
int fchown __P((int, uid_t, gid_t)) __RENAME(__posix_fchown);
|
1998-06-02 00:06:45 +04:00
|
|
|
#else
|
1998-07-27 13:58:49 +04:00
|
|
|
int fchown __P((int, uid_t, gid_t));
|
1998-06-02 00:06:45 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
int getdtablesize __P((void));
|
|
|
|
long gethostid __P((void));
|
1998-05-06 23:59:35 +04:00
|
|
|
int gethostname __P((char *, size_t));
|
1998-02-03 00:07:13 +03:00
|
|
|
__pure int
|
1998-06-02 00:06:45 +04:00
|
|
|
getpagesize __P((void)); /* legacy */
|
1998-11-09 15:45:11 +03:00
|
|
|
pid_t getpgid __P((pid_t));
|
1998-06-02 00:06:45 +04:00
|
|
|
#if defined(_XOPEN_SOURCE)
|
1998-07-27 13:58:49 +04:00
|
|
|
int lchown __P((const char *, uid_t, gid_t)) __RENAME(__posix_lchown);
|
1998-06-02 00:06:45 +04:00
|
|
|
#else
|
1998-07-27 13:58:49 +04:00
|
|
|
int lchown __P((const char *, uid_t, gid_t));
|
1998-06-02 00:06:45 +04:00
|
|
|
#endif
|
|
|
|
int lockf __P((int, int, off_t));
|
2004-05-11 02:33:08 +04:00
|
|
|
ssize_t readlink __P((const char * __restrict, char * __restrict, size_t));
|
1999-07-13 01:55:19 +04:00
|
|
|
void *sbrk __P((intptr_t));
|
1998-06-02 00:06:45 +04:00
|
|
|
/* XXX prototype wrong! */
|
2003-07-08 05:43:28 +04:00
|
|
|
int setpgrp __P((pid_t, pid_t)); /* obsoleted by setpgid() */
|
1998-06-02 00:06:45 +04:00
|
|
|
int setregid __P((gid_t, gid_t));
|
|
|
|
int setreuid __P((uid_t, uid_t));
|
|
|
|
void swab __P((const void *, void *, size_t));
|
|
|
|
int symlink __P((const char *, const char *));
|
|
|
|
void sync __P((void));
|
|
|
|
useconds_t ualarm __P((useconds_t, useconds_t));
|
|
|
|
int usleep __P((useconds_t));
|
|
|
|
#ifdef __LIBC12_SOURCE__
|
|
|
|
pid_t vfork __P((void));
|
|
|
|
pid_t __vfork14 __P((void));
|
|
|
|
#else
|
|
|
|
pid_t vfork __P((void)) __RENAME(__vfork14);
|
|
|
|
#endif
|
|
|
|
|
1998-07-27 13:58:49 +04:00
|
|
|
#ifndef __AUDIT__
|
|
|
|
char *getwd __P((char *)); /* obsoleted by getcwd() */
|
|
|
|
#endif
|
|
|
|
|
1998-06-02 00:06:45 +04:00
|
|
|
/* FIXME: this should go to <sys/time.h>! */
|
1999-04-21 00:15:47 +04:00
|
|
|
#if __STDC__
|
1998-06-02 00:06:45 +04:00
|
|
|
struct timeval; /* select(2) XXX */
|
|
|
|
#endif
|
|
|
|
int select __P((int, fd_set *, fd_set *, fd_set *, struct timeval *));
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#endif /* _XOPEN_SOURCE_EXTENDED || _XOPEN_SOURCE >= 500 || _NETBSD_SOURCE */
|
1998-06-02 00:06:45 +04:00
|
|
|
|
|
|
|
|
1998-07-03 01:20:54 +04:00
|
|
|
/*
|
|
|
|
* X/Open CAE Specification Issue 5 Version 2
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE)
|
1998-07-03 01:20:54 +04:00
|
|
|
ssize_t pread __P((int, void *, size_t, off_t));
|
|
|
|
ssize_t pwrite __P((int, const void *, size_t, off_t));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1998-06-02 00:06:45 +04:00
|
|
|
/*
|
|
|
|
* Implementation-defined extensions
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_NETBSD_SOURCE)
|
1998-06-02 00:06:45 +04:00
|
|
|
int acct __P((const char *));
|
2004-06-01 20:10:29 +04:00
|
|
|
int closefrom __P((int));
|
1998-06-02 00:06:45 +04:00
|
|
|
int des_cipher __P((const char *, char *, long, int));
|
2001-07-30 02:18:45 +04:00
|
|
|
int des_setkey __P((const char *));
|
1998-06-02 00:06:45 +04:00
|
|
|
void endusershell __P((void));
|
|
|
|
int exect __P((const char *, char * const *, char * const *));
|
1999-03-22 20:59:08 +03:00
|
|
|
int fchroot __P((int));
|
2003-11-18 03:56:56 +03:00
|
|
|
int fsync_range __P((int, int, off_t, off_t));
|
1998-06-02 00:06:45 +04:00
|
|
|
int getdomainname __P((char *, size_t));
|
|
|
|
int getgrouplist __P((const char *, gid_t, gid_t *, int *));
|
|
|
|
mode_t getmode __P((const void *, mode_t));
|
2000-04-02 10:32:41 +04:00
|
|
|
int getsubopt __P((char **, char * const *, char **));
|
1998-07-27 13:09:03 +04:00
|
|
|
__aconst char *getusershell __P((void));
|
1997-07-04 13:14:52 +04:00
|
|
|
int initgroups __P((const char *, gid_t));
|
1996-05-28 06:07:32 +04:00
|
|
|
int iruserok __P((u_int32_t, int, const char *, const char *));
|
2000-04-21 20:24:22 +04:00
|
|
|
int issetugid __P((void));
|
1994-06-08 15:59:55 +04:00
|
|
|
int nfssvc __P((int, void *));
|
change definition of profil() to make it 64-bit friendly. This has
no practical consequence on 32-bit systems. old prototype was
int profil(char *, int, int, int), and new one is int profile(char *,
size_t, u_long, u_int). the size_t is the size of the buffer,
and the u_long is the 'starting offset'. (I changed the last int
to u_int, because it's treated as a u_int everywhere, and isn't
logically a signed value.)
1995-11-23 02:07:19 +03:00
|
|
|
int profil __P((char *, size_t, u_long, u_int));
|
2000-12-19 00:22:00 +03:00
|
|
|
#ifndef __PSIGNAL_DECLARED
|
|
|
|
#define __PSIGNAL_DECLARED
|
|
|
|
/* also in signal.h */
|
|
|
|
void psignal __P((unsigned int, const char *));
|
|
|
|
#endif /* __PSIGNAL_DECLARED */
|
1993-03-21 12:45:37 +03:00
|
|
|
int rcmd __P((char **, int, const char *,
|
1998-07-27 13:58:49 +04:00
|
|
|
const char *, const char *, int *));
|
1996-08-09 14:32:11 +04:00
|
|
|
int reboot __P((int, char *));
|
1993-03-21 12:45:37 +03:00
|
|
|
int revoke __P((const char *));
|
|
|
|
int rresvport __P((int *));
|
|
|
|
int ruserok __P((const char *, int, const char *, const char *));
|
1998-05-06 23:59:35 +04:00
|
|
|
int setdomainname __P((const char *, size_t));
|
1994-03-29 06:44:37 +04:00
|
|
|
int setgroups __P((int, const gid_t *));
|
1996-12-20 22:33:56 +03:00
|
|
|
int sethostid __P((long));
|
1998-05-06 23:59:35 +04:00
|
|
|
int sethostname __P((const char *, size_t));
|
1993-03-21 12:45:37 +03:00
|
|
|
int setlogin __P((const char *));
|
|
|
|
void *setmode __P((const char *));
|
|
|
|
int setrgid __P((gid_t));
|
|
|
|
int setruid __P((uid_t));
|
|
|
|
void setusershell __P((void));
|
1997-10-17 03:26:24 +04:00
|
|
|
void strmode __P((mode_t, char *));
|
1998-07-27 13:09:03 +04:00
|
|
|
__aconst char *strsignal __P((int));
|
1997-06-23 05:13:43 +04:00
|
|
|
int swapctl __P((int, const void *, int));
|
1997-07-13 22:12:49 +04:00
|
|
|
int swapon __P((const char *)); /* obsoleted by swapctl() */
|
1993-03-21 12:45:37 +03:00
|
|
|
int syscall __P((int, ...));
|
1996-12-21 04:30:48 +03:00
|
|
|
quad_t __syscall __P((quad_t, ...));
|
1994-12-28 07:40:28 +03:00
|
|
|
int undelete __P((const char *));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-07-03 17:22:06 +04:00
|
|
|
#if 1 /*INET6*/
|
2000-01-27 08:33:06 +03:00
|
|
|
int rcmd_af __P((char **, int, const char *,
|
|
|
|
const char *, const char *, int *, int));
|
1999-07-03 17:22:06 +04:00
|
|
|
int rresvport_af __P((int *, int));
|
2000-01-27 08:33:06 +03:00
|
|
|
int iruserok_sa __P((const void *, int, int, const char *, const char *));
|
1999-07-03 17:22:06 +04:00
|
|
|
#endif
|
|
|
|
|
2000-12-19 00:22:00 +03:00
|
|
|
#ifndef __SYS_SIGLIST_DECLARED
|
|
|
|
#define __SYS_SIGLIST_DECLARED
|
|
|
|
/* also in signal.h */
|
1998-11-30 23:36:27 +03:00
|
|
|
extern __const char *__const *sys_siglist __RENAME(__sys_siglist14);
|
2000-12-19 00:22:00 +03:00
|
|
|
#endif /* __SYS_SIGLIST_DECLARED */
|
2000-04-02 10:32:41 +04:00
|
|
|
extern int optreset; /* getopt(3) external variable */
|
|
|
|
extern char *suboptarg; /* getsubopt(3) external variable */
|
1998-05-24 23:13:56 +04:00
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_UNISTD_H_ */
|