s/NO_MAN/NOMAN/ in various Makefiles.
[dragonfly.git] / include / stdlib.h
blobdfb3877f190629af182b72db211e750bbf32f69c
1 /*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
29 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
30 * $FreeBSD: src/include/stdlib.h,v 1.67 2008/07/22 11:40:42 ache Exp $
33 #ifndef _STDLIB_H_
34 #define _STDLIB_H_
36 #include <sys/cdefs.h>
37 #include <sys/_null.h>
38 #include <sys/types.h>
40 #if __BSD_VISIBLE
41 #ifndef _RUNE_T_DECLARED
42 typedef __rune_t rune_t;
43 #define _RUNE_T_DECLARED
44 #endif
45 #endif
47 #ifndef _SIZE_T_DECLARED
48 typedef __size_t size_t; /* _GCC_SIZE_T OK */
49 #define _SIZE_T_DECLARED
50 #endif
52 #ifndef __cplusplus
53 #ifndef _WCHAR_T_DECLARED
54 typedef __wchar_t wchar_t; /* _GCC_WCHAR_T OK */
55 #define _WCHAR_T_DECLARED
56 #endif
57 #endif
59 typedef struct {
60 int quot; /* quotient */
61 int rem; /* remainder */
62 } div_t;
64 typedef struct {
65 long quot;
66 long rem;
67 } ldiv_t;
69 #define EXIT_FAILURE 1
70 #define EXIT_SUCCESS 0
72 #define RAND_MAX 0x7fffffff
74 __BEGIN_DECLS
75 #ifdef _XLOCALE_H_
76 #include <xlocale/_stdlib.h>
77 #endif
78 extern int __mb_cur_max;
79 extern int ___mb_cur_max(void);
80 #define MB_CUR_MAX ((size_t)___mb_cur_max())
82 void abort(void) __dead2;
83 /* void abort2(const char *, int, void **) __dead2; */
84 #if !defined(_KERNEL_VIRTUAL)
85 int abs(int) __pure2;
86 #endif
87 int atexit(void (*)(void));
88 double atof(const char *);
89 int atoi(const char *);
90 long atol(const char *);
91 void *bsearch(const void *, const void *, size_t,
92 size_t, int (*)(const void *, const void *));
93 void *calloc(size_t, size_t) __malloclike __heedresult;
94 div_t div(int, int) __pure2;
95 void exit(int) __dead2;
96 void free(void *);
97 char *getenv(const char *);
98 #if !defined(_KERNEL_VIRTUAL)
99 long labs(long) __pure2;
100 #endif
101 ldiv_t ldiv(long, long) __pure2;
102 void *malloc(size_t) __malloclike __heedresult __alloc_size(1);
103 int mblen(const char *, size_t);
104 size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t);
105 int mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
106 void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
107 int rand(void);
108 void *realloc(void *, size_t) __heedresult __alloc_size(2);
109 void srand(unsigned);
110 double strtod(const char * __restrict, char ** __restrict);
111 float strtof(const char * __restrict, char ** __restrict);
112 #if !defined(_KERNEL_VIRTUAL)
113 long strtol(const char * __restrict, char ** __restrict, int);
114 #endif
115 long double
116 strtold(const char * __restrict, char ** __restrict);
117 #if !defined(_KERNEL_VIRTUAL)
118 unsigned long
119 strtoul(const char * __restrict, char ** __restrict, int);
120 #endif
121 int system(const char *);
122 int wctomb(char *, wchar_t);
123 size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t);
126 * Functions added in C99 which we make conditionally available in the
127 * BSD^C89 namespace if the compiler supports `long long'.
128 * The #if test is more complicated than it ought to be because
129 * __BSD_VISIBLE implies __ISO_C_VISIBLE == 1999 *even if* `long long'
130 * is not supported in the compilation environment (which therefore means
131 * that it can't really be ISO C99).
133 * (The only other extension made by C99 in this header is _Exit().)
135 #if __ISO_C_VISIBLE >= 1999 || defined(__cplusplus)
136 #ifdef __LONG_LONG_SUPPORTED
137 /* LONGLONG */
138 typedef struct {
139 long long quot;
140 long long rem;
141 } lldiv_t;
143 /* LONGLONG */
144 long long
145 atoll(const char *);
146 /* LONGLONG */
147 long long
148 llabs(long long) __pure2;
149 /* LONGLONG */
150 lldiv_t lldiv(long long, long long) __pure2;
151 /* LONGLONG */
152 long long
153 strtoll(const char * __restrict, char ** __restrict, int);
154 /* LONGLONG */
155 unsigned long long
156 strtoull(const char * __restrict, char ** __restrict, int);
157 #endif /* __LONG_LONG_SUPPORTED */
159 void _Exit(int) __dead2;
160 #endif /* __ISO_C_VISIBLE >= 1999 */
163 * C11 functions.
165 #if __ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L
166 void *aligned_alloc(size_t, size_t) __malloclike __heedresult
167 __alloc_align(1) __alloc_size(2);
168 int at_quick_exit(void (*)(void)); /* extra extern case for __cplusplus? */
169 void quick_exit(int) __dead2;
170 #endif /* __ISO_C_VISIBLE >= 2011 */
173 * Extensions made by POSIX relative to C.
175 #if __POSIX_VISIBLE >= 199506
176 int rand_r(unsigned *); /* (TSF) */
177 #endif
178 #if __POSIX_VISIBLE >= 200112
179 int posix_memalign(void **, size_t, size_t) __nonnull(1); /* (ADV) */
180 int setenv(const char *, const char *, int);
181 int unsetenv(const char *);
182 #endif
184 #if __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE
185 int getsubopt(char **, char *const *, char **);
186 #ifndef _MKDTEMP_DECLARED
187 char *mkdtemp(char *);
188 #define _MKDTEMP_DECLARED
189 #endif
190 #ifndef _MKSTEMP_DECLARED
191 int mkstemp(char *);
192 #define _MKSTEMP_DECLARED
193 #endif
194 #endif /* __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE */
197 * The only changes to the XSI namespace in revision 6 were the deletion
198 * of the ttyslot() and valloc() functions, which we never declared
199 * in this header. For revision 7, ecvt(), fcvt(), and gcvt(), which
200 * we also do not have, and mktemp(), are to be deleted.
202 #if __XSI_VISIBLE
203 /* XXX XSI requires pollution from <sys/wait.h> here. We'd rather not. */
204 long a64l(const char *);
205 double drand48(void);
206 double erand48(unsigned short[3]);
207 #if 0
208 #if __BSD_VISIBLE || __XSI_VISIBLE <= 600
209 char *ecvt(double, int, int * __restrict, int * __restrict); /* LEGACY */
210 char *fcvt(double, int, int * __restrict, int * __restrict); /* LEGACY */
211 char *gcvt(double, int, int * __restrict, int * __restrict); /* LEGACY */
212 #endif
213 #endif
214 int grantpt(int);
215 char *initstate(unsigned long /* XSI requires u_int */, char *, long);
216 long jrand48(unsigned short[3]);
217 char *l64a(long);
218 void lcong48(unsigned short[7]);
219 long lrand48(void);
220 #if !defined(_MKTEMP_DECLARED) && (__BSD_VISIBLE || __XSI_VISIBLE <= 600)
221 char *mktemp(char *); /* LEGACY */
222 #define _MKTEMP_DECLARED
223 #endif
224 long mrand48(void);
225 long nrand48(unsigned short[3]);
226 int posix_openpt(int);
227 char *ptsname(int);
228 int putenv(char *);
229 long random(void);
230 char *realpath(const char * __restrict, char * __restrict);
231 unsigned short
232 *seed48(unsigned short[3]);
233 int setkey(const char *);
234 char *setstate(/* const */ char *);
235 void srand48(long);
236 void srandom(unsigned long);
237 int unlockpt(int);
238 #endif /* __XSI_VISIBLE */
240 #if __BSD_VISIBLE
241 /* extern const char *_malloc_options;
242 extern void (*_malloc_message)(const char *, const char *, const char *,
243 const char *); */
246 * The alloca() function can't be implemented in C, and on some
247 * platforms it can't be implemented at all as a callable function.
248 * The GNU C compiler provides a built-in alloca() which we can use;
249 * in all other cases, provide a prototype, mainly to pacify various
250 * incarnations of lint. On platforms where alloca() is not in libc,
251 * programs which use it will fail to link when compiled with non-GNU
252 * compilers.
254 #if __GNUC__ >= 2 || defined(__INTEL_COMPILER)
255 #undef alloca /* some GNU bits try to get cute and define this on their own */
256 #define alloca(sz) __builtin_alloca(sz)
257 #elif defined(lint)
258 void *alloca(size_t);
259 #endif
261 __uint32_t
262 arc4random(void);
263 void arc4random_addrandom(__uint8_t *, size_t);
264 void arc4random_buf(void *, size_t);
265 void arc4random_stir(void);
266 __uint32_t
267 arc4random_uniform(__uint32_t);
268 char *getbsize(int *, long *);
270 /* getcap(3) functions */
271 char *cgetcap(char *, const char *, int);
272 int cgetclose(void);
273 int cgetent(char **, char **, const char *);
274 int cgetfirst(char **, char **);
275 int cgetmatch(const char *, const char *);
276 int cgetnext(char **, char **);
277 int cgetnum(char *, const char *, long *);
278 int cgetset(const char *);
279 int cgetstr(char *, const char *, char **);
280 int cgetustr(char *, const char *, char **);
282 int daemon(int, int);
283 char *devname(dev_t, mode_t);
284 char *devname_r(dev_t, mode_t, char *, size_t);
285 char *fdevname(int);
286 int fdevname_r(int, char *, size_t);
287 int getloadavg(double [], int);
288 const char *
289 getprogname(void);
291 int heapsort(void *, size_t, size_t, int (*)(const void *, const void *));
292 int l64a_r(long, char *, int);
293 int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));
294 int mkostemp(char *, int);
295 int mkostemps(char *, int, int);
296 void qsort_r(void *, size_t, size_t, void *,
297 int (*)(void *, const void *, const void *));
298 int radixsort(const unsigned char **, int, const unsigned char *,
299 unsigned int);
300 void *reallocf(void *, size_t) __heedresult __alloc_size(2);
301 int rpmatch(const char *);
302 void setprogname(const char *);
303 int sradixsort(const unsigned char **, int, const unsigned char *,
304 unsigned int);
305 void sranddev(void);
306 void srandomdev(void);
307 long long
308 strtonum(const char *, long long, long long, const char **);
310 /* Deprecated interfaces. */
311 #if !defined(_KERNEL_VIRTUAL)
312 __int64_t
313 strtoq(const char *, char **, int);
314 __uint64_t
315 strtouq(const char *, char **, int);
316 #endif
318 extern char *suboptarg; /* getsubopt(3) external variable */
319 #endif /* __BSD_VISIBLE */
320 __END_DECLS
322 #endif /* !_STDLIB_H_ */