source: trunk/src/emx/include/stdlib.h@ 1506

Last change on this file since 1506 was 1506, checked in by bird, 21 years ago

@unixroot. header reviews. ++

  • Property cvs2svn:cvs-rev set to 1.24
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 14.7 KB
Line 
1/* stdlib.h,v 1.24 2004/09/14 22:27:36 bird Exp */
2/** @file
3 * FreeBSD 5.1
4 * @changed bird: EMXifications and OS2ifications.
5 */
6
7/*-
8 * Copyright (c) 1990, 1993
9 * The Regents of the University of California. All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)stdlib.h 8.5 (Berkeley) 5/19/95
40 * $FreeBSD: src/include/stdlib.h,v 1.48 2003/03/12 20:29:58 das Exp $
41 */
42
43#ifndef _STDLIB_H_
44#define _STDLIB_H_
45
46#include <sys/cdefs.h>
47#include <sys/_types.h>
48
49#if __BSD_VISIBLE
50#ifndef _RUNE_T_DECLARED
51typedef __rune_t rune_t;
52#define _RUNE_T_DECLARED
53#endif
54#endif
55
56#if !defined(_SIZE_T_DECLARED) && !defined(_SIZE_T) /* bird: emx */
57typedef __size_t size_t;
58#define _SIZE_T_DECLARED
59#define _SIZE_T /* bird: emx */
60#endif
61
62#ifndef __cplusplus
63#if !defined(_WCHAR_T_DECLARED) && !defined(_WCHAR_T) /* bird: emx */
64typedef __wchar_t wchar_t;
65#define _WCHAR_T_DECLARED
66#define _WCHAR_T /* bird: emx */
67#endif
68#endif
69
70typedef struct _div_t { /* bird: emx (tag) */
71 int quot; /* quotient */
72 int rem; /* remainder */
73} div_t;
74
75typedef struct _ldiv_t { /* bird: emx (tag) */
76 long quot;
77 long rem;
78} ldiv_t;
79
80#ifndef NULL
81#define NULL 0
82#endif
83
84#define EXIT_FAILURE 1
85#define EXIT_SUCCESS 0
86
87#define RAND_MAX 0x7fff /* bird: emx, old value 0x7fffffff */
88
89extern int _mb_cur_max; /* bird: one underscore, not two for us. */
90#define MB_CUR_MAX _mb_cur_max /* bird: one underscore, not two for us. */
91
92__BEGIN_DECLS
93void abort(void) __dead2;
94#ifndef _ABS_DECLARED /* bird: emx, also math.h */
95int abs(int) __pure2;
96#if !defined (__GNUC__) || __GNUC__ >= 2
97extern __inline__ int abs(int _n) { return (_n < 0 ? -_n : _n); }
98#endif
99#define _ABS_DECLARED
100#endif
101int atexit(void (*)(void));
102double atof(const char *);
103int atoi(const char *);
104long atol(const char *);
105void *bsearch(const void *, const void *, size_t,
106 size_t, int (*)(const void *, const void *));
107void *calloc(size_t, size_t);
108div_t div(int, int) __pure2;
109void exit(int) __dead2;
110void free(void *);
111char *getenv(const char *);
112#ifndef _LABS_DECLARED /* bird: emx, also math.h */
113long labs(long) __pure2;
114#if !defined (__GNUC__) || __GNUC__ >= 2
115extern __inline__ long labs(long _n) { return (_n < 0 ? -_n : _n); }
116#endif
117#define _LABS_DECLARED
118#endif
119ldiv_t ldiv(long, long) __pure2;
120void *malloc(size_t);
121int mblen(const char *, size_t);
122size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t);
123int mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
124void qsort(void *, size_t, size_t,
125 int (*)(const void *, const void *));
126int rand(void);
127void *realloc(void *, size_t);
128void srand(unsigned);
129double strtod(const char * __restrict, char ** __restrict);
130float strtof(const char * __restrict, char ** __restrict);
131long strtol(const char * __restrict, char ** __restrict, int);
132long double
133 strtold(const char * __restrict, char ** __restrict);
134unsigned long
135 strtoul(const char * __restrict, char ** __restrict, int);
136int system(const char *);
137int wctomb(char *, wchar_t);
138size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t);
139
140/*
141 * Functions added in C99 which we make conditionally available in the
142 * BSD^C89 namespace if the compiler supports `long long'.
143 * The #if test is more complicated than it ought to be because
144 * __BSD_VISIBLE implies __ISO_C_VISIBLE == 1999 *even if* `long long'
145 * is not supported in the compilation environment (which therefore means
146 * that it can't really be ISO C99).
147 *
148 * (The only other extension made by C99 in thie header is _Exit().)
149 */
150#if __ISO_C_VISIBLE >= 1999
151#ifdef __LONG_LONG_SUPPORTED
152/* LONGLONG */
153typedef struct _lldiv_t { /* bird: emx (tag) */
154 long long quot;
155 long long rem;
156} lldiv_t;
157
158/* LONGLONG */
159long long
160 atoll(const char *);
161/* LONGLONG */
162long long
163 llabs(long long) __pure2;
164/* LONGLONG */
165/** @todo lldiv_t lldiv(long long, long long) __pure2; */
166/* LONGLONG */
167long long
168 strtoll(const char * __restrict, char ** __restrict, int);
169/* LONGLONG */
170unsigned long long
171 strtoull(const char * __restrict, char ** __restrict, int);
172#endif /* __LONG_LONG_SUPPORTED */
173
174void _Exit(int) __dead2;
175#endif /* __ISO_C_VISIBLE >= 1999 */
176
177/*
178 * Extensions made by POSIX relative to C. We don't know yet which edition
179 * of POSIX made these extensions, so assume they've always been there until
180 * research can be done.
181 */
182#if __POSIX_VISIBLE /* >= ??? */
183int posix_memalign(void **, size_t, size_t); /* bird: we implement this. */
184/** @todo int rand_r(unsigned *); */ /* (TSF) */
185int setenv(const char *, const char *, int);
186int unsetenv(const char *); /* bird: standard saith shall return int. */
187#endif
188
189/*
190 * The only changes to the XSI namespace in revision 6 were the deletion
191 * of the ttyslot() and valloc() functions, which FreeBSD never declared
192 * in this header. For revision 7, ecvt(), fcvt(), and gcvt(), which
193 * FreeBSD also does not have, and mktemp(), are to be deleted.
194 */
195#if __XSI_VISIBLE
196/* XXX XSI requires pollution from <sys/wait.h> here. We'd rather not. */
197/* long a64l(const char *); */
198double drand48(void);
199/* char *ecvt(double, int, int * __restrict, int * __restrict); */
200double erand48(unsigned short[3]);
201/* char *fcvt(double, int, int * __restrict, int * __restrict); */
202/* char *gcvt(double, int, int * __restrict, int * __restrict); */
203#ifndef _GETSUBOPT_DECLARED
204/** @todo int getsubopt(char **, char *const *, char **); */
205#define _GETSUBOPT_DECLARED
206#endif
207/** @todo int grantpt(int); */
208char *initstate(unsigned long /* XSI requires u_int */, char *, long);
209long jrand48(unsigned short[3]);
210/* char *l64a(long); */
211void lcong48(unsigned short[7]);
212long lrand48(void);
213#ifndef _MKSTEMP_DECLARED
214int mkstemp(char *);
215#define _MKSTEMP_DECLARED
216#endif
217#ifndef _MKTEMP_DECLARED
218char *mktemp(char *);
219#define _MKTEMP_DECLARED
220#endif
221long mrand48(void);
222long nrand48(unsigned short[3]);
223/** @todo int posix_openpt(int); */
224/** @todo char *ptsname(int); */
225int putenv(const char *);
226long random(void);
227char *realpath(const char *, char resolved_path[]);
228unsigned short
229 *seed48(unsigned short[3]);
230#ifndef _SETKEY_DECLARED
231/** @todo int setkey(const char *); */
232#define _SETKEY_DECLARED
233#endif
234char *setstate(/* const */ char *);
235void srand48(long);
236void srandom(unsigned long);
237/** @todo int unlockpt(int); */
238#endif /* __XSI_VISIBLE */
239
240#if __BSD_VISIBLE
241extern const char *_malloc_options;
242extern void (*_malloc_message)(const char *, const char *, const char *,
243 const char *);
244
245void *alloca(size_t); /* built-in for gcc */
246/** @todo __uint32_t
247 arc4random(void); */
248/** @todo void arc4random_addrandom(unsigned char *dat, int datlen); */
249/** @todo void arc4random_stir(void); */
250char *getbsize(int *, long *);
251 /* getcap(3) functions */
252/** @todo char *cgetcap(char *, const char *, int); */
253/** @todo int cgetclose(void); */
254/** @todo int cgetent(char **, char **, const char *); */
255/** @todo int cgetfirst(char **, char **); */
256/** @todo int cgetmatch(const char *, const char *); */
257/** @todo int cgetnext(char **, char **); */
258/** @todo int cgetnum(char *, const char *, long *); */
259/** @todo int cgetset(const char *); */
260/** @todo int cgetstr(char *, const char *, char **); */
261/** @todo int cgetustr(char *, const char *, char **); */
262
263/** @todo int daemon(int, int); */
264/** @todo char *devname(int, int); */
265int getloadavg(double [], int);
266__const char *
267 getprogname(void);
268
269int heapsort(void *, size_t, size_t, int (*)(const void *, const void *));
270int mergesort(void *, size_t, size_t, int (*)(const void *, const void *));
271void qsort_r(void *, size_t, size_t, void *,
272 int (*)(void *, const void *, const void *));
273int radixsort(const unsigned char **, int, const unsigned char *,
274 unsigned);
275void *reallocf(void *, size_t);
276void setprogname(const char *);
277int sradixsort(const unsigned char **, int, const unsigned char *,
278 unsigned);
279/** @todo void sranddev(void); */
280void srandomdev(void);
281
282/* Deprecated interfaces, to be removed in FreeBSD 6.0. */
283/** @todo __int64_t
284 strtoq(const char *, char **, int); */
285/** @todo __uint64_t
286 strtouq(const char *, char **, int); */
287#endif /* __BSD_VISIBLE */
288
289
290
291/* bird: EMX/PC stuff - start */
292
293#include <malloc.h>
294
295#if !defined (_MAX_PATH)
296#define _MAX_PATH 260
297#define _MAX_DRIVE 3
298#define _MAX_DIR 256
299#define _MAX_FNAME 256
300#define _MAX_EXT 256
301#endif
302
303#if !defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE) || defined(__USE_EMX)
304
305#if !defined (OS2_MODE)
306#define DOS_MODE 0
307#define OS2_MODE 1
308#endif
309
310#ifndef _INTPTR_T_DECLARED
311typedef __intptr_t intptr_t;
312typedef __uintptr_t uintptr_t;
313#define _INTPTR_T_DECLARED
314#endif
315
316#if !defined(_MODE_T_DECLARED) && !defined(_MODE_T) /* bird: emx */
317typedef __mode_t mode_t;
318#define _MODE_T_DECLARED
319#define _MODE_T /* bird: emx */
320#endif
321
322/* declare _errno to be compatible with MS/VAC/WATCOM */
323#if !defined (_ERRNO)
324#define _ERRNO
325extern int * _errno(void);
326#define errno (* _errno())
327#endif /* bird: emx */
328
329#if !defined (_ULDIV_T)
330#define _ULDIV_T
331typedef struct
332{
333 unsigned long quot;
334 unsigned long rem;
335} _uldiv_t;
336
337#if __ISO_C_VISIBLE >= 1999 && defined(__LONG_LONG_SUPPORTED)
338typedef struct _lldiv_t _lldiv_t;
339#else
340typedef struct
341{
342 long long quot;
343 long long rem;
344} _lldiv_t;
345#endif
346typedef struct
347{
348 unsigned long long quot;
349 unsigned long long rem;
350} _ulldiv_t;
351#endif
352
353extern char **environ;
354
355extern __const__ unsigned char _osminor;
356extern __const__ unsigned char _osmajor;
357
358/* No DOS support ... */
359#define _osmode OS2_MODE
360
361unsigned alarm (unsigned);
362int brk(const void *);
363int chdir (const char *);
364char *gcvt (double, int, char *); /* this is rubbish standardwise */
365char *getcwd (char *, size_t);
366int getpagesize (void);
367char *getwd (char *);
368int mkdir(const char *, mode_t);
369void perror (const char *);
370int rmdir (const char *);
371void *sbrk(intptr_t);
372unsigned sleep (unsigned);
373long ulimit (int, ...);
374
375char *itoa (int, char *, int);
376char *ltoa (long, char *, int);
377char *ultoa (unsigned long, char *, int);
378char *lltoa (long long, char *, int);
379char *ulltoa (unsigned long long, char *, int);
380
381#endif
382
383
384#if (!defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE)) || defined (_WITH_UNDERSCORE) || defined(__USE_EMX)
385
386extern char **_environ;
387extern __const__ char * __const__ _sys_errlist[];
388extern __const__ int _sys_nerr;
389
390unsigned _alarm (unsigned);
391int _brk(const void *);
392int _chdir (__const__ char *);
393char *_gcvt (double, int, char *);
394char *_getcwd (char *, size_t);
395int _getpagesize (void);
396char *_getwd (char *);
397int _mkdir (__const__ char *, long);
398int _putenv (__const__ char *);
399int _rmdir (__const__ char *);
400void *_sbrk(intptr_t);
401unsigned _sleep (unsigned);
402void _swab (__const__ void *, void *, size_t);
403long _ulimit (int, ...);
404
405int _abspath (char *, __const__ char *, int);
406long long _atoll (__const__ char *);
407long double _atofl (__const__ char *);
408int _chdir2 (__const__ char *);
409int _chdrive (char);
410int _core (int);
411void _defext (char *, __const__ char *);
412void _envargs (int *, char ***, __const__ char *);
413int _execname (char *, size_t);
414void _exit (int) __attribute__ ((__noreturn__));
415int _filesys (__const__ char *, char *, size_t);
416char **_fnexplode (__const__ char *);
417void _fnexplodefree (char **);
418char _fngetdrive (__const__ char *);
419int _fnisabs (__const__ char *);
420int _fnisrel (__const__ char *);
421void _fnlwr (char *);
422void _fnlwr2 (char *, __const__ char *);
423char *_fnslashify (char *);
424int _fullpath (char *, __const__ char *, int);
425int _getcwd1 (char *, char);
426char *_getcwd2 (char *, int);
427char _getdrive (void);
428char *_getext (__const__ char *);
429char *_getext2 (__const__ char *);
430char *_getname (__const__ char *);
431int _getsockhandle (int);
432int _gettid (void);
433char *_getvol (char);
434char *_itoa (int, char *, int);
435_lldiv_t _lldiv (long long, long long);
436char *_lltoa (long long, char *, int);
437_uldiv_t _uldiv (unsigned long, unsigned long);
438_ulldiv_t _ulldiv (unsigned long long, unsigned long long);
439char *_itoa (int, char *, int);
440char *_ltoa (long, char *, int);
441char *_ultoa (unsigned long, char *, int);
442char *_lltoa (long long, char *, int);
443char *_ulltoa (unsigned long long, char *, int);
444void _makepath (char *, __const__ char *, __const__ char *,
445 __const__ char *, __const__ char *);
446int _path (char *, __const__ char *);
447int _read_kbd (int, int, int);
448void _remext (char *);
449void _rfnlwr (void);
450void _response (int *, char ***);
451void _scrsize (int *);
452void _searchenv (__const__ char *, __const__ char *, char *);
453void _sfnlwr (__const__ char *);
454unsigned _sleep2 (unsigned);
455char ** _splitargs (char *, int *);
456void _splitpath (__const__ char *, char *, char *, char *, char *);
457float _strtof (__const__ char *, char **);
458long double _strtold (__const__ char *, char **);
459long long _strtoll (__const__ char *, char **, int);
460unsigned long long _strtoull (__const__ char *, char **, int);
461char _swchar (void);
462void _wildcard (int *, char ***);
463
464int _beginthread (void (*)(void *), void *, unsigned, void *);
465void _endthread (void);
466void **_threadstore (void);
467
468int _setenv(const char *envname, const char *envval, int overwrite);
469int _unsetenv(const char *name);
470
471#endif
472
473__END_DECLS
474
475/* bird: EMX/PC stuff - start */
476
477#endif /* !_STDLIB_H_ */
478
Note: See TracBrowser for help on using the repository browser.