1994-05-24 09:57:34 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
1997-03-11 11:18:25 +00:00
|
|
|
* @(#)stdlib.h 8.5 (Berkeley) 5/19/95
|
1999-12-23 15:58:20 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 09:57:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STDLIB_H_
|
1995-04-15 23:48:16 +00:00
|
|
|
#define _STDLIB_H_
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1998-02-27 06:12:47 +00:00
|
|
|
#include <sys/cdefs.h>
|
2003-12-07 21:10:06 +00:00
|
|
|
#include <sys/_null.h>
|
2002-08-21 16:20:02 +00:00
|
|
|
#include <sys/_types.h>
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-09-21 02:03:58 +00:00
|
|
|
#if __BSD_VISIBLE
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _RUNE_T_DECLARED
|
|
|
|
typedef __rune_t rune_t;
|
|
|
|
#define _RUNE_T_DECLARED
|
1996-05-01 00:40:10 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _SIZE_T_DECLARED
|
|
|
|
typedef __size_t size_t;
|
|
|
|
#define _SIZE_T_DECLARED
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
2002-07-09 05:13:30 +00:00
|
|
|
#ifndef __cplusplus
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _WCHAR_T_DECLARED
|
|
|
|
typedef __wchar_t wchar_t;
|
|
|
|
#define _WCHAR_T_DECLARED
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
2002-07-09 05:13:30 +00:00
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2002-09-21 22:05:37 +00:00
|
|
|
int quot; /* quotient */
|
|
|
|
int rem; /* remainder */
|
1994-05-24 09:57:34 +00:00
|
|
|
} div_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2002-09-21 22:05:37 +00:00
|
|
|
long quot;
|
|
|
|
long rem;
|
1994-05-24 09:57:34 +00:00
|
|
|
} ldiv_t;
|
|
|
|
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
|
|
|
|
#define RAND_MAX 0x7fffffff
|
|
|
|
|
|
|
|
extern int __mb_cur_max;
|
|
|
|
#define MB_CUR_MAX __mb_cur_max
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
void abort(void) __dead2;
|
|
|
|
int abs(int) __pure2;
|
|
|
|
int atexit(void (*)(void));
|
|
|
|
double atof(const char *);
|
|
|
|
int atoi(const char *);
|
|
|
|
long atol(const char *);
|
|
|
|
void *bsearch(const void *, const void *, size_t,
|
|
|
|
size_t, int (*)(const void *, const void *));
|
2009-01-31 18:27:02 +00:00
|
|
|
void *calloc(size_t, size_t) __malloc_like;
|
2002-03-23 17:24:55 +00:00
|
|
|
div_t div(int, int) __pure2;
|
|
|
|
void exit(int) __dead2;
|
|
|
|
void free(void *);
|
|
|
|
char *getenv(const char *);
|
|
|
|
long labs(long) __pure2;
|
|
|
|
ldiv_t ldiv(long, long) __pure2;
|
2009-01-31 18:27:02 +00:00
|
|
|
void *malloc(size_t) __malloc_like;
|
2002-09-21 02:03:58 +00:00
|
|
|
int mblen(const char *, size_t);
|
2002-09-21 22:05:37 +00:00
|
|
|
size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t);
|
2002-09-21 02:03:58 +00:00
|
|
|
int mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
|
2002-03-23 17:24:55 +00:00
|
|
|
void qsort(void *, size_t, size_t,
|
|
|
|
int (*)(const void *, const void *));
|
|
|
|
int rand(void);
|
|
|
|
void *realloc(void *, size_t);
|
|
|
|
void srand(unsigned);
|
2002-09-21 22:05:37 +00:00
|
|
|
double strtod(const char * __restrict, char ** __restrict);
|
2003-03-12 20:30:00 +00:00
|
|
|
float strtof(const char * __restrict, char ** __restrict);
|
2002-09-21 22:05:37 +00:00
|
|
|
long strtol(const char * __restrict, char ** __restrict, int);
|
2003-03-12 20:30:00 +00:00
|
|
|
long double
|
|
|
|
strtold(const char * __restrict, char ** __restrict);
|
1994-05-24 09:57:34 +00:00
|
|
|
unsigned long
|
2002-09-06 11:24:06 +00:00
|
|
|
strtoul(const char * __restrict, char ** __restrict, int);
|
2002-03-23 17:24:55 +00:00
|
|
|
int system(const char *);
|
|
|
|
int wctomb(char *, wchar_t);
|
2002-09-06 11:24:06 +00:00
|
|
|
size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t);
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-09-21 02:03:58 +00:00
|
|
|
/*
|
|
|
|
* Functions added in C99 which we make conditionally available in the
|
|
|
|
* BSD^C89 namespace if the compiler supports `long long'.
|
|
|
|
* The #if test is more complicated than it ought to be because
|
|
|
|
* __BSD_VISIBLE implies __ISO_C_VISIBLE == 1999 *even if* `long long'
|
|
|
|
* is not supported in the compilation environment (which therefore means
|
|
|
|
* that it can't really be ISO C99).
|
|
|
|
*
|
|
|
|
* (The only other extension made by C99 in thie header is _Exit().)
|
|
|
|
*/
|
|
|
|
#if __ISO_C_VISIBLE >= 1999
|
|
|
|
#ifdef __LONG_LONG_SUPPORTED
|
|
|
|
/* LONGLONG */
|
|
|
|
typedef struct {
|
|
|
|
long long quot;
|
|
|
|
long long rem;
|
|
|
|
} lldiv_t;
|
2002-03-23 17:24:55 +00:00
|
|
|
|
2002-09-21 02:03:58 +00:00
|
|
|
/* LONGLONG */
|
|
|
|
long long
|
|
|
|
atoll(const char *);
|
|
|
|
/* LONGLONG */
|
|
|
|
long long
|
|
|
|
llabs(long long) __pure2;
|
|
|
|
/* LONGLONG */
|
|
|
|
lldiv_t lldiv(long long, long long) __pure2;
|
|
|
|
/* LONGLONG */
|
2002-09-21 22:05:37 +00:00
|
|
|
long long
|
|
|
|
strtoll(const char * __restrict, char ** __restrict, int);
|
2002-09-21 02:03:58 +00:00
|
|
|
/* LONGLONG */
|
|
|
|
unsigned long long
|
2002-09-21 22:05:37 +00:00
|
|
|
strtoull(const char * __restrict, char ** __restrict, int);
|
2002-09-21 02:03:58 +00:00
|
|
|
#endif /* __LONG_LONG_SUPPORTED */
|
|
|
|
|
2002-09-21 22:05:37 +00:00
|
|
|
void _Exit(int) __dead2;
|
2002-09-21 02:03:58 +00:00
|
|
|
#endif /* __ISO_C_VISIBLE >= 1999 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extensions made by POSIX relative to C. We don't know yet which edition
|
|
|
|
* of POSIX made these extensions, so assume they've always been there until
|
|
|
|
* research can be done.
|
|
|
|
*/
|
|
|
|
#if __POSIX_VISIBLE /* >= ??? */
|
2006-01-12 07:58:59 +00:00
|
|
|
int posix_memalign(void **, size_t, size_t); /* (ADV) */
|
2002-09-21 02:03:58 +00:00
|
|
|
int rand_r(unsigned *); /* (TSF) */
|
2002-03-23 17:24:55 +00:00
|
|
|
int setenv(const char *, const char *, int);
|
2007-07-04 00:00:41 +00:00
|
|
|
int unsetenv(const char *);
|
2002-09-21 02:03:58 +00:00
|
|
|
#endif
|
2002-03-23 17:24:55 +00:00
|
|
|
|
2009-03-04 03:31:10 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE
|
|
|
|
int getsubopt(char **, char *const *, char **);
|
|
|
|
#ifndef _MKDTEMP_DECLARED
|
|
|
|
char *mkdtemp(char *);
|
|
|
|
#define _MKDTEMP_DECLARED
|
|
|
|
#endif
|
|
|
|
#ifndef _MKSTEMP_DECLARED
|
|
|
|
int mkstemp(char *);
|
|
|
|
#define _MKSTEMP_DECLARED
|
|
|
|
#endif
|
|
|
|
#endif /* __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE */
|
|
|
|
|
2002-09-21 02:03:58 +00:00
|
|
|
/*
|
|
|
|
* The only changes to the XSI namespace in revision 6 were the deletion
|
|
|
|
* of the ttyslot() and valloc() functions, which FreeBSD never declared
|
|
|
|
* in this header. For revision 7, ecvt(), fcvt(), and gcvt(), which
|
|
|
|
* FreeBSD also does not have, and mktemp(), are to be deleted.
|
|
|
|
*/
|
|
|
|
#if __XSI_VISIBLE
|
|
|
|
/* XXX XSI requires pollution from <sys/wait.h> here. We'd rather not. */
|
2005-12-24 22:37:59 +00:00
|
|
|
long a64l(const char *);
|
2002-03-23 17:24:55 +00:00
|
|
|
double drand48(void);
|
2002-09-21 22:05:37 +00:00
|
|
|
/* char *ecvt(double, int, int * __restrict, int * __restrict); */
|
2002-03-23 17:24:55 +00:00
|
|
|
double erand48(unsigned short[3]);
|
2002-09-21 22:05:37 +00:00
|
|
|
/* char *fcvt(double, int, int * __restrict, int * __restrict); */
|
|
|
|
/* char *gcvt(double, int, int * __restrict, int * __restrict); */
|
2003-01-02 20:44:41 +00:00
|
|
|
int grantpt(int);
|
2002-09-21 02:03:58 +00:00
|
|
|
char *initstate(unsigned long /* XSI requires u_int */, char *, long);
|
2002-03-23 17:24:55 +00:00
|
|
|
long jrand48(unsigned short[3]);
|
2005-12-24 22:37:59 +00:00
|
|
|
char *l64a(long);
|
2002-03-23 17:24:55 +00:00
|
|
|
void lcong48(unsigned short[7]);
|
|
|
|
long lrand48(void);
|
2009-03-14 02:31:48 +00:00
|
|
|
#if !defined(_MKTEMP_DECLARED) && (__BSD_VISIBLE || __XSI_VISIBLE <= 600)
|
2002-09-21 02:03:58 +00:00
|
|
|
char *mktemp(char *);
|
2002-09-21 22:05:37 +00:00
|
|
|
#define _MKTEMP_DECLARED
|
2002-09-21 02:03:58 +00:00
|
|
|
#endif
|
2002-03-23 17:24:55 +00:00
|
|
|
long mrand48(void);
|
|
|
|
long nrand48(unsigned short[3]);
|
2003-01-02 20:44:41 +00:00
|
|
|
int posix_openpt(int);
|
|
|
|
char *ptsname(int);
|
2007-07-04 00:00:41 +00:00
|
|
|
int putenv(char *);
|
2002-09-21 02:03:58 +00:00
|
|
|
long random(void);
|
|
|
|
char *realpath(const char *, char resolved_path[]);
|
1995-04-15 23:48:16 +00:00
|
|
|
unsigned short
|
2002-03-23 17:24:55 +00:00
|
|
|
*seed48(unsigned short[3]);
|
2002-09-21 02:03:58 +00:00
|
|
|
#ifndef _SETKEY_DECLARED
|
|
|
|
int setkey(const char *);
|
|
|
|
#define _SETKEY_DECLARED
|
|
|
|
#endif
|
|
|
|
char *setstate(/* const */ char *);
|
2002-03-23 17:24:55 +00:00
|
|
|
void srand48(long);
|
2002-09-21 02:03:58 +00:00
|
|
|
void srandom(unsigned long);
|
2003-01-02 20:44:41 +00:00
|
|
|
int unlockpt(int);
|
2002-09-21 02:03:58 +00:00
|
|
|
#endif /* __XSI_VISIBLE */
|
|
|
|
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
extern const char *_malloc_options;
|
2002-09-21 22:05:37 +00:00
|
|
|
extern void (*_malloc_message)(const char *, const char *, const char *,
|
|
|
|
const char *);
|
1994-11-21 09:25:58 +00:00
|
|
|
|
2003-06-15 11:01:52 +00:00
|
|
|
/*
|
|
|
|
* The alloca() function can't be implemented in C, and on some
|
|
|
|
* platforms it can't be implemented at all as a callable function.
|
|
|
|
* The GNU C compiler provides a built-in alloca() which we can use;
|
|
|
|
* in all other cases, provide a prototype, mainly to pacify various
|
|
|
|
* incarnations of lint. On platforms where alloca() is not in libc,
|
|
|
|
* programs which use it will fail to link when compiled with non-GNU
|
|
|
|
* compilers.
|
|
|
|
*/
|
2003-06-25 18:11:32 +00:00
|
|
|
#if __GNUC__ >= 2 || defined(__INTEL_COMPILER)
|
|
|
|
#undef alloca /* some GNU bits try to get cute and define this on their own */
|
2003-06-15 11:01:52 +00:00
|
|
|
#define alloca(sz) __builtin_alloca(sz)
|
2003-06-25 18:11:32 +00:00
|
|
|
#elif defined(lint)
|
2003-06-15 11:01:52 +00:00
|
|
|
void *alloca(size_t);
|
|
|
|
#endif
|
|
|
|
|
2009-03-14 19:13:30 +00:00
|
|
|
void abort2(const char *, int, void **) __dead2;
|
1998-12-19 00:02:34 +00:00
|
|
|
__uint32_t
|
2002-03-23 17:24:55 +00:00
|
|
|
arc4random(void);
|
2008-07-21 14:03:04 +00:00
|
|
|
void arc4random_addrandom(unsigned char *, int);
|
|
|
|
void arc4random_buf(void *, size_t);
|
2002-03-23 17:24:55 +00:00
|
|
|
void arc4random_stir(void);
|
2008-07-22 11:40:42 +00:00
|
|
|
__uint32_t
|
|
|
|
arc4random_uniform(__uint32_t);
|
2002-12-30 11:12:16 +00:00
|
|
|
char *getbsize(int *, long *);
|
2002-09-21 02:03:58 +00:00
|
|
|
/* getcap(3) functions */
|
2002-03-23 17:24:55 +00:00
|
|
|
char *cgetcap(char *, const char *, int);
|
|
|
|
int cgetclose(void);
|
|
|
|
int cgetent(char **, char **, const char *);
|
|
|
|
int cgetfirst(char **, char **);
|
|
|
|
int cgetmatch(const char *, const char *);
|
|
|
|
int cgetnext(char **, char **);
|
|
|
|
int cgetnum(char *, const char *, long *);
|
|
|
|
int cgetset(const char *);
|
|
|
|
int cgetstr(char *, const char *, char **);
|
|
|
|
int cgetustr(char *, const char *, char **);
|
|
|
|
|
|
|
|
int daemon(int, int);
|
2005-09-12 15:58:15 +00:00
|
|
|
char *devname(__dev_t, __mode_t);
|
|
|
|
char *devname_r(__dev_t, __mode_t, char *, int);
|
2009-02-11 20:24:59 +00:00
|
|
|
char *fdevname(int);
|
|
|
|
char *fdevname_r(int, char *, int);
|
2002-03-23 17:24:55 +00:00
|
|
|
int getloadavg(double [], int);
|
2001-12-22 05:18:37 +00:00
|
|
|
__const char *
|
2002-03-23 17:24:55 +00:00
|
|
|
getprogname(void);
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-03-23 17:24:55 +00:00
|
|
|
int heapsort(void *, size_t, size_t, int (*)(const void *, const void *));
|
2005-12-24 22:37:59 +00:00
|
|
|
int l64a_r(long, char *, int);
|
2002-03-23 17:24:55 +00:00
|
|
|
int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));
|
2002-09-10 02:02:49 +00:00
|
|
|
void qsort_r(void *, size_t, size_t, void *,
|
|
|
|
int (*)(void *, const void *, const void *));
|
2002-03-23 17:24:55 +00:00
|
|
|
int radixsort(const unsigned char **, int, const unsigned char *,
|
|
|
|
unsigned);
|
|
|
|
void *reallocf(void *, size_t);
|
2005-01-09 03:55:13 +00:00
|
|
|
int rpmatch(const char *);
|
2002-03-23 17:24:55 +00:00
|
|
|
void setprogname(const char *);
|
2002-09-10 02:02:49 +00:00
|
|
|
int sradixsort(const unsigned char **, int, const unsigned char *,
|
|
|
|
unsigned);
|
2002-03-23 17:24:55 +00:00
|
|
|
void sranddev(void);
|
|
|
|
void srandomdev(void);
|
2006-03-14 16:57:30 +00:00
|
|
|
long long
|
|
|
|
strtonum(const char *, long long, long long, const char **);
|
2002-09-21 02:03:58 +00:00
|
|
|
|
|
|
|
/* Deprecated interfaces, to be removed in FreeBSD 6.0. */
|
2002-09-21 22:05:37 +00:00
|
|
|
__int64_t
|
|
|
|
strtoq(const char *, char **, int);
|
1998-12-19 00:02:34 +00:00
|
|
|
__uint64_t
|
2002-03-23 17:24:55 +00:00
|
|
|
strtouq(const char *, char **, int);
|
2004-02-23 03:16:59 +00:00
|
|
|
|
|
|
|
extern char *suboptarg; /* getsubopt(3) external variable */
|
2002-09-21 02:03:58 +00:00
|
|
|
#endif /* __BSD_VISIBLE */
|
1994-05-24 09:57:34 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
1995-04-15 23:48:16 +00:00
|
|
|
#endif /* !_STDLIB_H_ */
|