Loading...
include/stdlib.h Libc-1669.0.4 Libc-320.1.3
--- Libc/Libc-1669.0.4/include/stdlib.h
+++ Libc/Libc-320.1.3/include/stdlib.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2002 - 2008, 2023 Apple Inc. All rights reserved.
+ * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -55,8 +55,198 @@
  *	@(#)stdlib.h	8.5 (Berkeley) 5/19/95
  */
 
-#include <_stdlib.h>
-
-#ifdef _USE_EXTENDED_LOCALES_
-#include <xlocale/_stdlib.h>
-#endif /* _USE_EXTENDED_LOCALES_ */
+#ifndef _STDLIB_H_
+#define _STDLIB_H_
+
+#include <machine/ansi.h>
+#include <machine/types.h>
+#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
+#include <alloca.h>
+#endif
+
+#ifndef	_BSD_SIZE_T_DEFINED_
+#define	_BSD_SIZE_T_DEFINED_
+typedef	_BSD_SIZE_T_	size_t;
+#endif
+
+#if !defined(_ANSI_SOURCE)
+#ifndef _BSD_CT_RUNE_T_DEFINED_
+#define _BSD_CT_RUNE_T_DEFINED_
+typedef	_BSD_CT_RUNE_T_	ct_rune_t;
+#endif
+
+#ifndef _BSD_RUNE_T_DEFINED_
+#define _BSD_RUNE_T_DEFINED_
+typedef _BSD_RUNE_T_   rune_t;
+#endif
+#endif
+
+#ifndef	__cplusplus
+#ifndef	_BSD_WCHAR_T_DEFINED_
+#define	_BSD_WCHAR_T_DEFINED_
+#ifdef	__WCHAR_TYPE__
+typedef	__WCHAR_TYPE__	wchar_t;
+#else	/* ! __WCHAR_TYPE__ */
+typedef	_BSD_WCHAR_T_	wchar_t;
+#endif	/* __WCHAR_TYPE__ */
+#endif	/* _BSD_WCHAR_T_DEFINED_ */
+#endif	/* __cplusplus */
+
+#ifndef	_BSD_WINT_T_DEFINED_
+#define _BSD_WINT_T_DEFINED_
+typedef	_BSD_WINT_T_	wint_t;
+#endif
+
+typedef struct {
+	int quot;		/* quotient */
+	int rem;		/* remainder */
+} div_t;
+
+typedef struct {
+	long quot;		/* quotient */
+	long rem;		/* remainder */
+} ldiv_t;
+
+#ifndef NULL
+#define	NULL	0
+#endif
+
+#define	EXIT_FAILURE	1
+#define	EXIT_SUCCESS	0
+
+#define	RAND_MAX	0x7fffffff
+
+extern int __mb_cur_max;
+#define	MB_CUR_MAX	__mb_cur_max
+
+#include <sys/cdefs.h>
+
+__BEGIN_DECLS
+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 *));
+void	*calloc(size_t, size_t);
+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;
+void	*malloc(size_t);
+int	 mblen(const char *, size_t);
+size_t	 mbstowcs(wchar_t * __restrict , const char * __restrict, size_t);
+int	 mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
+void	 qsort(void *, size_t, size_t,
+	    int (*)(const void *, const void *));
+int	 rand(void);
+void	*realloc(void *, size_t);
+void	 srand(unsigned);
+double	 strtod(const char *, char **);
+float	 strtof(const char *, char **);
+long	 strtol(const char *, char **, int);
+long double
+	 strtold(const char *, char **);
+unsigned long
+	 strtoul(const char *, char **, int);
+int	 system(const char *);
+void	*valloc(size_t);
+int	 wctomb(char *, wchar_t);
+size_t	 wcstombs(char * __restrict, const wchar_t * __restrict, size_t);
+
+#ifndef _ANSI_SOURCE
+int	 putenv(const char *);
+int	 setenv(const char *, const char *, int);
+#endif
+
+#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
+u_int32_t
+	 arc4random(void);
+void	 arc4random_addrandom(unsigned char *dat, int datlen);
+void	 arc4random_stir(void);
+double	 drand48(void);
+double	 erand48(unsigned short[3]); 
+long	 jrand48(unsigned short[3]);
+void	 lcong48(unsigned short[7]);
+long	 lrand48(void);
+long	 mrand48(void); 
+long	 nrand48(unsigned short[3]);
+unsigned short
+	*seed48(unsigned short[3]);
+void	 srand48(long);
+
+	 /* getcap(3) functions */
+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);
+char	*devname(int, int);
+char	*getbsize(int *, long *);
+int	 getloadavg(double [], int);
+const char
+	*getprogname(void);
+
+long	 a64l(const char *);
+char	*l64a(long);
+
+/* int	 grantpt(int); */
+int	 heapsort(void *, size_t, size_t,
+	    int (*)(const void *, const void *));
+char	*initstate(unsigned long, char *, long);
+int	 mergesort(void *, size_t, size_t,
+	    int (*)(const void *, const void *));
+/* int	 posix_openpt(int); */
+/* char	*ptsname(int); */
+void	 qsort_r(void *, size_t, size_t, void *,
+	    int (*)(void *, const void *, const void *));
+int	 radixsort(const unsigned char **, int, const unsigned char *,
+	    unsigned);
+void	 setprogname(const char *);
+int	 sradixsort(const unsigned char **, int, const unsigned char *,
+	    unsigned);
+void	 sranddev(void);
+void	 srandomdev(void);
+int	 rand_r(unsigned *);
+long	 random(void);
+void	*reallocf(void *, size_t);
+char	*realpath(const char *, char resolved_path[]);
+char	*setstate(char *);
+void	 srandom(unsigned long);
+/* int	 unlockpt(int); */
+#ifndef __STRICT_ANSI__
+typedef struct {
+	long long quot;
+	long long rem;
+} lldiv_t;
+
+long long
+	 atoll(const char *);
+long long
+	 llabs(long long);
+lldiv_t	 lldiv(long long, long long);
+long long 
+	 strtoll(const char *, char **, int);
+unsigned long long
+	 strtoull(const char *, char **, int);
+long long
+	 strtoq(const char *, char **, int);
+unsigned long long
+	 strtouq(const char *, char **, int);
+#endif
+void	 unsetenv(const char *);
+#endif
+__END_DECLS
+
+#endif /* _STDLIB_H_ */