2003-07-08 05:43:28 +04:00
|
|
|
/* $NetBSD: stdlib.h,v 1.63 2003/07/08 01:43:28 kristerw Exp $ */
|
1994-10-26 03:55:40 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1998-02-03 00:07:13 +03:00
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University 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 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
|
|
|
* @(#)stdlib.h 8.5 (Berkeley) 5/19/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STDLIB_H_
|
|
|
|
#define _STDLIB_H_
|
1993-10-11 22:08:26 +03:00
|
|
|
|
1998-07-27 15:09:19 +04:00
|
|
|
#include <sys/cdefs.h>
|
1998-05-11 16:00:27 +04:00
|
|
|
#include <sys/featuretest.h>
|
|
|
|
|
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-05-11 16:00:27 +04:00
|
|
|
#include <sys/types.h> /* for quad_t, etc. */
|
1995-03-22 02:08:14 +03:00
|
|
|
#endif
|
|
|
|
|
1998-02-03 00:07:13 +03:00
|
|
|
#include <machine/ansi.h>
|
|
|
|
|
1994-05-21 13:41:59 +04:00
|
|
|
#ifdef _BSD_SIZE_T_
|
|
|
|
typedef _BSD_SIZE_T_ size_t;
|
|
|
|
#undef _BSD_SIZE_T_
|
1993-10-11 22:08:26 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-21 13:41:59 +04:00
|
|
|
#ifdef _BSD_WCHAR_T_
|
|
|
|
typedef _BSD_WCHAR_T_ wchar_t;
|
|
|
|
#undef _BSD_WCHAR_T_
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int quot; /* quotient */
|
|
|
|
int rem; /* remainder */
|
|
|
|
} div_t;
|
1995-03-22 02:08:14 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
typedef struct {
|
|
|
|
long quot; /* quotient */
|
|
|
|
long rem; /* remainder */
|
|
|
|
} ldiv_t;
|
|
|
|
|
2000-03-06 21:32:22 +03:00
|
|
|
#if !defined(_ANSI_SOURCE) && \
|
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
|
|
|
(defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L || \
|
|
|
|
defined(_NETBSD_SOURCE))
|
2000-03-06 21:32:22 +03:00
|
|
|
typedef struct {
|
|
|
|
/* LONGLONG */
|
|
|
|
long long int quot; /* quotient */
|
|
|
|
/* LONGLONG */
|
|
|
|
long long int rem; /* remainder */
|
|
|
|
} lldiv_t;
|
|
|
|
#endif
|
|
|
|
|
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)
|
1995-03-22 02:08:14 +03:00
|
|
|
typedef struct {
|
|
|
|
quad_t quot; /* quotient */
|
|
|
|
quad_t rem; /* remainder */
|
|
|
|
} qdiv_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-01-10 19:58:38 +03:00
|
|
|
#include <sys/null.h>
|
1993-11-13 04:44:59 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
|
|
|
|
#define RAND_MAX 0x7fffffff
|
|
|
|
|
2000-08-10 14:03:43 +04:00
|
|
|
extern size_t __mb_cur_max;
|
1998-02-03 00:07:13 +03:00
|
|
|
#define MB_CUR_MAX __mb_cur_max
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2003-03-01 18:59:02 +03:00
|
|
|
__dead void _Exit __P((int)) __attribute__((__noreturn__));
|
1998-07-30 04:44:15 +04:00
|
|
|
__dead void abort __P((void)) __attribute__((__noreturn__));
|
1998-07-28 04:28:29 +04:00
|
|
|
__pure int abs __P((int));
|
1993-03-21 12:45:37 +03:00
|
|
|
int atexit __P((void (*)(void)));
|
|
|
|
double atof __P((const char *));
|
|
|
|
int atoi __P((const char *));
|
|
|
|
long atol __P((const char *));
|
2000-12-20 21:35:21 +03:00
|
|
|
#ifndef __BSEARCH_DECLARED
|
|
|
|
#define __BSEARCH_DECLARED
|
|
|
|
/* also in search.h */
|
|
|
|
void *bsearch __P((const void *, const void *, size_t, size_t,
|
|
|
|
int (*)(const void *, const void *)));
|
|
|
|
#endif /* __BSEARCH_DECLARED */
|
1993-03-21 12:45:37 +03:00
|
|
|
void *calloc __P((size_t, size_t));
|
|
|
|
div_t div __P((int, int));
|
1998-07-30 04:44:15 +04:00
|
|
|
__dead void exit __P((int)) __attribute__((__noreturn__));
|
1993-03-21 12:45:37 +03:00
|
|
|
void free __P((void *));
|
1998-07-27 13:33:44 +04:00
|
|
|
__aconst char *getenv __P((const char *));
|
1998-02-03 00:07:13 +03:00
|
|
|
__pure long
|
|
|
|
labs __P((long));
|
1993-03-21 12:45:37 +03:00
|
|
|
ldiv_t ldiv __P((long, long));
|
|
|
|
void *malloc __P((size_t));
|
|
|
|
void qsort __P((void *, size_t, size_t,
|
|
|
|
int (*)(const void *, const void *)));
|
|
|
|
int rand __P((void));
|
|
|
|
void *realloc __P((void *, size_t));
|
|
|
|
void srand __P((unsigned));
|
2001-03-22 01:42:28 +03:00
|
|
|
double strtod __P((const char * __restrict, char ** __restrict));
|
|
|
|
long strtol __P((const char * __restrict, char ** __restrict, int));
|
1993-03-21 12:45:37 +03:00
|
|
|
unsigned long
|
2001-03-22 01:42:28 +03:00
|
|
|
strtoul __P((const char * __restrict, char ** __restrict, int));
|
1993-03-21 12:45:37 +03:00
|
|
|
int system __P((const char *));
|
|
|
|
|
1998-02-03 00:07:13 +03:00
|
|
|
/* These are currently just stubs. */
|
1993-03-21 12:45:37 +03:00
|
|
|
int mblen __P((const char *, size_t));
|
2001-03-22 01:42:28 +03:00
|
|
|
size_t mbstowcs __P((wchar_t * __restrict, const char * __restrict, size_t));
|
1993-03-21 12:45:37 +03:00
|
|
|
int wctomb __P((char *, wchar_t));
|
2001-03-22 01:42:28 +03:00
|
|
|
int mbtowc __P((wchar_t * __restrict, const char * __restrict, size_t));
|
|
|
|
size_t wcstombs __P((char * __restrict, const wchar_t * __restrict, size_t));
|
1993-03-21 12:45:37 +03: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 defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
1998-05-11 16:00:27 +04:00
|
|
|
|
|
|
|
|
1998-06-02 00:10:15 +04:00
|
|
|
/*
|
|
|
|
* IEEE Std 1003.1c-95, also adopted by X/Open CAE Spec 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) >= 199506L || (_XOPEN_SOURCE - 0) >= 500 || \
|
|
|
|
defined(_REENTRANT) || defined(_NETBSD_SOURCE)
|
1998-06-02 00:10:15 +04:00
|
|
|
int rand_r __P((unsigned int *));
|
|
|
|
#endif
|
1998-05-11 16:00:27 +04:00
|
|
|
|
|
|
|
|
1998-06-02 00:10:15 +04:00
|
|
|
/*
|
|
|
|
* 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-05-11 16:00:27 +04:00
|
|
|
double drand48 __P((void));
|
|
|
|
double erand48 __P((unsigned short[3]));
|
|
|
|
long jrand48 __P((unsigned short[3]));
|
|
|
|
void lcong48 __P((unsigned short[7]));
|
|
|
|
long lrand48 __P((void));
|
|
|
|
long mrand48 __P((void));
|
|
|
|
long nrand48 __P((unsigned short[3]));
|
|
|
|
unsigned short *
|
|
|
|
seed48 __P((unsigned short[3]));
|
|
|
|
void srand48 __P((long));
|
|
|
|
|
1998-06-02 00:10:15 +04:00
|
|
|
int putenv __P((const char *));
|
|
|
|
#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)
|
1998-06-02 00:10:15 +04:00
|
|
|
long a64l __P((const char *));
|
|
|
|
char *l64a __P((long));
|
|
|
|
|
|
|
|
char *initstate __P((unsigned long, char *, size_t));
|
|
|
|
long random __P((void));
|
|
|
|
char *setstate __P((char *));
|
|
|
|
void srandom __P((unsigned long));
|
|
|
|
|
1998-07-27 20:12:01 +04:00
|
|
|
char *mkdtemp __P((char *));
|
1998-06-02 00:10:15 +04:00
|
|
|
int mkstemp __P((char *));
|
1998-07-27 13:58:49 +04:00
|
|
|
#ifndef __AUDIT__
|
1998-06-02 00:10:15 +04:00
|
|
|
char *mktemp __P((char *));
|
1998-07-27 13:58:49 +04:00
|
|
|
#endif
|
1998-06-02 00:10:15 +04:00
|
|
|
|
|
|
|
int setkey __P((const char *));
|
|
|
|
|
|
|
|
char *realpath __P((const char *, char *));
|
|
|
|
|
|
|
|
int ttyslot __P((void));
|
|
|
|
|
|
|
|
void *valloc __P((size_t)); /* obsoleted by malloc() */
|
|
|
|
#endif
|
|
|
|
|
2000-03-06 21:32:22 +03:00
|
|
|
/*
|
|
|
|
* ISO C99
|
|
|
|
*/
|
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(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2000-03-06 21:32:22 +03:00
|
|
|
/* LONGLONG */
|
|
|
|
long long int atoll __P((const char *));
|
|
|
|
/* LONGLONG */
|
|
|
|
long long int llabs __P((long long int));
|
|
|
|
/* LONGLONG */
|
|
|
|
lldiv_t lldiv __P((long long int, long long int));
|
|
|
|
/* LONGLONG */
|
2001-03-22 01:42:28 +03:00
|
|
|
long long int strtoll __P((const char * __restrict, char ** __restrict, int));
|
2000-03-06 21:32:22 +03:00
|
|
|
/* LONGLONG */
|
2001-03-22 01:42:28 +03:00
|
|
|
unsigned long long int
|
|
|
|
strtoull __P((const char * __restrict, char ** __restrict,
|
|
|
|
int));
|
2000-03-06 21:32:22 +03:00
|
|
|
#endif
|
1998-06-02 00:10:15 +04:00
|
|
|
|
2003-04-07 17:41:13 +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-07 17:41:13 +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-07 17:41:13 +04:00
|
|
|
int setenv __P((const char *, const char *, int));
|
|
|
|
#ifdef __LIBC12_SOURCE__
|
|
|
|
void unsetenv __P((const char *));
|
|
|
|
int __unsetenv13 __P((const char *));
|
|
|
|
#else
|
|
|
|
int unsetenv __P((const char *)) __RENAME(__unsetenv13);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1998-06-02 00:10:15 +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)
|
1993-06-08 05:29:43 +04:00
|
|
|
#if defined(alloca) && (alloca == __builtin_alloca) && (__GNUC__ < 2)
|
1997-07-14 04:30:28 +04:00
|
|
|
void *alloca __P((int)); /* built-in for gcc */
|
1993-03-25 08:51:03 +03:00
|
|
|
#else
|
1997-07-14 04:30:28 +04:00
|
|
|
void *alloca __P((size_t));
|
1993-03-25 08:51:03 +03:00
|
|
|
#endif /* __GNUC__ */
|
1993-10-22 20:34:38 +03:00
|
|
|
|
2002-05-24 08:01:43 +04:00
|
|
|
u_int32_t arc4random __P((void));
|
|
|
|
void arc4random_stir __P((void));
|
|
|
|
void arc4random_addrandom __P((u_char *, int));
|
1994-01-25 23:10:11 +03:00
|
|
|
char *getbsize __P((int *, long *));
|
1998-07-27 03:03:30 +04:00
|
|
|
char *cgetcap __P((char *, const char *, int));
|
1994-01-25 02:15:24 +03:00
|
|
|
int cgetclose __P((void));
|
1998-07-27 03:03:30 +04:00
|
|
|
int cgetent __P((char **, char **, const char *));
|
1994-01-25 02:15:24 +03:00
|
|
|
int cgetfirst __P((char **, char **));
|
1998-07-27 03:03:30 +04:00
|
|
|
int cgetmatch __P((const char *, const char *));
|
1994-01-25 02:15:24 +03:00
|
|
|
int cgetnext __P((char **, char **));
|
1998-07-27 03:03:30 +04:00
|
|
|
int cgetnum __P((char *, const char *, long *));
|
|
|
|
int cgetset __P((const char *));
|
|
|
|
int cgetstr __P((char *, const char *, char **));
|
|
|
|
int cgetustr __P((char *, const char *, char **));
|
1994-01-25 02:15:24 +03:00
|
|
|
|
1994-07-02 09:01:45 +04:00
|
|
|
int daemon __P((int, int));
|
1998-07-27 13:33:44 +04:00
|
|
|
__aconst char *devname __P((dev_t, mode_t));
|
1994-07-02 09:01:45 +04:00
|
|
|
int getloadavg __P((double [], int));
|
|
|
|
|
1993-10-13 20:56:09 +03:00
|
|
|
void cfree __P((void *));
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
int heapsort __P((void *, size_t, size_t,
|
|
|
|
int (*)(const void *, const void *)));
|
1994-06-16 09:45:35 +04:00
|
|
|
int mergesort __P((void *, size_t, size_t,
|
|
|
|
int (*)(const void *, const void *)));
|
|
|
|
int radixsort __P((const unsigned char **, int, const unsigned char *,
|
|
|
|
unsigned));
|
|
|
|
int sradixsort __P((const unsigned char **, int, const unsigned char *,
|
|
|
|
unsigned));
|
1993-10-13 20:56:09 +03:00
|
|
|
|
2000-10-03 23:53:58 +04:00
|
|
|
void setproctitle __P((const char *, ...))
|
|
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
2001-02-20 01:12:41 +03:00
|
|
|
const char *getprogname __P((void)) __attribute__((__const__));
|
|
|
|
void setprogname __P((const char *));
|
2000-10-03 23:53:58 +04:00
|
|
|
|
1995-03-22 04:08:31 +03:00
|
|
|
quad_t qabs __P((quad_t));
|
2001-03-22 01:42:28 +03:00
|
|
|
quad_t strtoq __P((const char * __restrict, char ** __restrict, int));
|
|
|
|
u_quad_t strtouq __P((const char * __restrict, char ** __restrict, int));
|
1999-02-06 18:04:05 +03:00
|
|
|
|
2002-11-29 15:58:14 +03:00
|
|
|
/* LONGLONG */
|
|
|
|
long long strsuftoll(const char *, const char *, long long, long long);
|
|
|
|
/* LONGLONG */
|
|
|
|
long long strsuftollx(const char *, const char *, long long, long long,
|
|
|
|
char *, size_t);
|
|
|
|
|
1999-02-06 18:04:05 +03:00
|
|
|
int l64a_r __P((long, char *, int));
|
2001-03-10 04:46:08 +03:00
|
|
|
|
2003-07-08 05:43:28 +04:00
|
|
|
size_t shquote __P((const char *, char *, size_t));
|
|
|
|
size_t shquotev __P((int, char * const *, char *, size_t));
|
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 /* _NETBSD_SOURCE */
|
|
|
|
#endif /* _POSIX_C_SOURCE || _XOPEN_SOURCE || _NETBSD_SOURCE */
|
2001-03-28 15:12:19 +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 defined(_NETBSD_SOURCE)
|
2001-03-28 15:12:19 +04:00
|
|
|
qdiv_t qdiv __P((quad_t, quad_t));
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
__END_DECLS
|
|
|
|
|
1997-07-14 04:30:28 +04:00
|
|
|
#endif /* !_STDLIB_H_ */
|