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

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

Big path handling change. Fixed wrong file headers. A new api or two. A bit of restructuring. And hopefully no new bug :-)

  • Property cvs2svn:cvs-rev set to 1.25
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 14.9 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: LIBC stuff - start */
292#ifdef __BSD_VISIBLE
293char *_getcwdux(char *, size_t);
294#endif
295#ifdef __USE_GNU
296char *canonicalize_file_name(const char *);
297#endif
298/* bird: LIBC stuff - end */
299
300
301/* bird: EMX/PC stuff - start */
302
303#include <malloc.h>
304
305#if !defined (_MAX_PATH)
306#define _MAX_PATH 260
307#define _MAX_DRIVE 3
308#define _MAX_DIR 256
309#define _MAX_FNAME 256
310#define _MAX_EXT 256
311#endif
312
313#if !defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE) || defined(__USE_EMX)
314
315#if !defined (OS2_MODE)
316#define DOS_MODE 0
317#define OS2_MODE 1
318#endif
319
320#ifndef _INTPTR_T_DECLARED
321typedef __intptr_t intptr_t;
322typedef __uintptr_t uintptr_t;
323#define _INTPTR_T_DECLARED
324#endif
325
326#if !defined(_MODE_T_DECLARED) && !defined(_MODE_T) /* bird: emx */
327typedef __mode_t mode_t;
328#define _MODE_T_DECLARED
329#define _MODE_T /* bird: emx */
330#endif
331
332/* declare _errno to be compatible with MS/VAC/WATCOM */
333#if !defined (_ERRNO)
334#define _ERRNO
335extern int * _errno(void);
336#define errno (* _errno())
337#endif /* bird: emx */
338
339#if !defined (_ULDIV_T)
340#define _ULDIV_T
341typedef struct
342{
343 unsigned long quot;
344 unsigned long rem;
345} _uldiv_t;
346
347#if __ISO_C_VISIBLE >= 1999 && defined(__LONG_LONG_SUPPORTED)
348typedef struct _lldiv_t _lldiv_t;
349#else
350typedef struct
351{
352 long long quot;
353 long long rem;
354} _lldiv_t;
355#endif
356typedef struct
357{
358 unsigned long long quot;
359 unsigned long long rem;
360} _ulldiv_t;
361#endif
362
363extern char **environ;
364
365extern __const__ unsigned char _osminor;
366extern __const__ unsigned char _osmajor;
367
368/* No DOS support ... */
369#define _osmode OS2_MODE
370
371unsigned alarm (unsigned);
372int brk(const void *);
373int chdir (const char *);
374char *gcvt (double, int, char *); /* this is rubbish standardwise */
375char *getcwd (char *, size_t);
376int getpagesize (void);
377char *getwd (char *);
378int mkdir(const char *, mode_t);
379void perror (const char *);
380int rmdir (const char *);
381void *sbrk(intptr_t);
382unsigned sleep (unsigned);
383long ulimit (int, ...);
384
385char *itoa (int, char *, int);
386char *ltoa (long, char *, int);
387char *ultoa (unsigned long, char *, int);
388char *lltoa (long long, char *, int);
389char *ulltoa (unsigned long long, char *, int);
390
391#endif
392
393
394#if (!defined (__STRICT_ANSI__) && !defined (_POSIX_SOURCE)) || defined (_WITH_UNDERSCORE) || defined(__USE_EMX)
395
396extern char **_environ;
397extern __const__ char * __const__ _sys_errlist[];
398extern __const__ int _sys_nerr;
399
400unsigned _alarm (unsigned);
401int _brk(const void *);
402int _chdir (__const__ char *);
403char *_gcvt (double, int, char *);
404char *_getcwd (char *, size_t);
405int _getpagesize (void);
406char *_getwd (char *);
407int _mkdir (__const__ char *, long);
408int _putenv (__const__ char *);
409int _rmdir (__const__ char *);
410void *_sbrk(intptr_t);
411unsigned _sleep (unsigned);
412void _swab (__const__ void *, void *, size_t);
413long _ulimit (int, ...);
414
415int _abspath (char *, __const__ char *, int);
416long long _atoll (__const__ char *);
417long double _atofl (__const__ char *);
418int _chdir2 (__const__ char *);
419int _chdrive (char);
420int _core (int);
421void _defext (char *, __const__ char *);
422void _envargs (int *, char ***, __const__ char *);
423int _execname (char *, size_t);
424void _exit (int) __attribute__ ((__noreturn__));
425int _filesys (__const__ char *, char *, size_t);
426char **_fnexplode (__const__ char *);
427void _fnexplodefree (char **);
428char _fngetdrive (__const__ char *);
429int _fnisabs (__const__ char *);
430int _fnisrel (__const__ char *);
431void _fnlwr (char *);
432void _fnlwr2 (char *, __const__ char *);
433char *_fnslashify (char *);
434int _fullpath (char *, __const__ char *, int);
435int _getcwd1 (char *, char);
436char *_getcwd2 (char *, int);
437char _getdrive (void);
438char *_getext (__const__ char *);
439char *_getext2 (__const__ char *);
440char *_getname (__const__ char *);
441int _getsockhandle (int);
442int _gettid (void);
443char *_getvol (char);
444char *_itoa (int, char *, int);
445_lldiv_t _lldiv (long long, long long);
446char *_lltoa (long long, char *, int);
447_uldiv_t _uldiv (unsigned long, unsigned long);
448_ulldiv_t _ulldiv (unsigned long long, unsigned long long);
449char *_itoa (int, char *, int);
450char *_ltoa (long, char *, int);
451char *_ultoa (unsigned long, char *, int);
452char *_lltoa (long long, char *, int);
453char *_ulltoa (unsigned long long, char *, int);
454void _makepath (char *, __const__ char *, __const__ char *,
455 __const__ char *, __const__ char *);
456int _path (char *, __const__ char *);
457int _read_kbd (int, int, int);
458void _remext (char *);
459void _rfnlwr (void);
460void _response (int *, char ***);
461void _scrsize (int *);
462void _searchenv (__const__ char *, __const__ char *, char *);
463void _sfnlwr (__const__ char *);
464unsigned _sleep2 (unsigned);
465char ** _splitargs (char *, int *);
466void _splitpath (__const__ char *, char *, char *, char *, char *);
467float _strtof (__const__ char *, char **);
468long double _strtold (__const__ char *, char **);
469long long _strtoll (__const__ char *, char **, int);
470unsigned long long _strtoull (__const__ char *, char **, int);
471char _swchar (void);
472void _wildcard (int *, char ***);
473
474int _beginthread (void (*)(void *), void *, unsigned, void *);
475void _endthread (void);
476void **_threadstore (void);
477
478int _setenv(const char *envname, const char *envval, int overwrite);
479int _unsetenv(const char *name);
480
481#endif
482
483__END_DECLS
484
485/* bird: EMX/PC stuff - start */
486
487#endif /* !_STDLIB_H_ */
488
Note: See TracBrowser for help on using the repository browser.