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

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

_realrealpath().

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