aa32f79837
* include/stdlib.h (__libc_drand48_data): Declare as hidden. * stdlib/drand48.c: Remove declaration of __libc_drand48_data here. * stdlib/erand48.c: Likewise. * stdlib/jrand48.c: Likewise. * stdlib/lcong48.c: Likewise. * stdlib/lrand48.c: Likewise. * stdlib/mrand48.c: Likewise. * stdlib/nrand48.c: Likewise. * stdlib/seed48.c: Likewise. * stdlib/srand48.c: Likewise. * stdio-common/_itoa.c (_itoa_base_table): Declare as hidden. (_itoa_lower_digits_internal): New declaration. (_itoa_upper_digits_internal): New declaration. (_itoa): Use INTUSE to acces _itoa_upper_digits and _itoa_lower_digits. * stdio-common.h (_itoa_lower_digits_internal): New declaration. (_itoa_upper_digits_internal): New declaration. (_itoa_word): Use INTUSE to acces _itoa_upper_digits and _itoa_lower_digits. * stdio-common/itoa-digits.c: Use INTVARDEF with _itoa_lower_digits. * stdio-common/itoa-udigits.c: Use INTVARDEF with _itoa_upper_digits. * elf/dl-minimal.c (_itoa): Declare _itoa_lower_digits as hidden. * elf/dl-reloc.c (_dl_reloc_bad_type): Likewise. * stdio-common/_itowa.c (_itoa_base_table): Declare as hidden. (_itowa_lower_digits): Likewise. (_itowa_upper_digits): Likewise. * stdio-common/_itowa.h (_itowa_lower_digits): Likewise. (_itowa_upper_digits): Likewise. * intl/plural-exp.h (attribute_hidden): Define as empty macro if not already defined. (GERMANIC_PLURAL): Declare as hidden. * posix/getopt.c (__getopt_initialized): Declare as hidden. (attribute_hidden): Define as empty macro if not already defined. * iconv/gconv_int.h (__gconv_path_elem): Declare hidden. (__gconv_max_path_elem_len): Likewise. (__gconv_path_envvar): Likewise. * math/Makefile (gmp-objs): Remove mp_clz_tab. * stdlib/Makefile (aux): Remove mp_clz_tab. * stdlib/mp_clz_tab.c: Removed. Not needed anywhere. * stdlib/exit.h (__exit_funcs): Declare as hidden.
153 lines
5.5 KiB
C
153 lines
5.5 KiB
C
#ifndef _STDLIB_H
|
|
|
|
#ifdef __need_malloc_and_calloc
|
|
#define __Need_M_And_C
|
|
#endif
|
|
|
|
#include <stdlib/stdlib.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
#ifndef __Need_M_And_C
|
|
extern long int __random (void);
|
|
extern void __srandom (unsigned int __seed);
|
|
extern char *__initstate (unsigned int __seed, char *__statebuf,
|
|
size_t __statelen);
|
|
extern char *__setstate (char *__statebuf);
|
|
extern int __random_r (struct random_data *__buf, int32_t *__result);
|
|
extern int __srandom_r (unsigned int __seed, struct random_data *__buf);
|
|
extern int __initstate_r (unsigned int __seed, char *__statebuf,
|
|
size_t __statelen, struct random_data *__buf);
|
|
extern int __setstate_r (char *__statebuf, struct random_data *__buf);
|
|
extern int __rand_r (unsigned int *__seed);
|
|
extern int __erand48_r (unsigned short int __xsubi[3],
|
|
struct drand48_data *__buffer, double *__result);
|
|
extern int __nrand48_r (unsigned short int __xsubi[3],
|
|
struct drand48_data *__buffer,
|
|
long int *__result);
|
|
extern int __jrand48_r (unsigned short int __xsubi[3],
|
|
struct drand48_data *__buffer,
|
|
long int *__result);
|
|
extern int __srand48_r (long int __seedval,
|
|
struct drand48_data *__buffer);
|
|
extern int __seed48_r (unsigned short int __seed16v[3],
|
|
struct drand48_data *__buffer);
|
|
extern int __lcong48_r (unsigned short int __param[7],
|
|
struct drand48_data *__buffer);
|
|
|
|
/* Internal function to compute next state of the generator. */
|
|
extern int __drand48_iterate (unsigned short int __xsubi[3],
|
|
struct drand48_data *__buffer);
|
|
|
|
/* Global state for non-reentrant functions. Defined in drand48-iter.c. */
|
|
extern struct drand48_data __libc_drand48_data attribute_hidden;
|
|
|
|
extern int __setenv (__const char *__name, __const char *__value,
|
|
int __replace);
|
|
extern int __unsetenv (__const char *__name);
|
|
extern int __clearenv (void);
|
|
extern char *__canonicalize_file_name (__const char *__name);
|
|
extern char *__realpath (__const char *__name, char *__resolved);
|
|
extern int __ptsname_r (int __fd, char *__buf, size_t __buflen);
|
|
extern int __getpt (void);
|
|
extern int __posix_openpt (int __oflag);
|
|
|
|
extern int __add_to_environ (const char *name, const char *value,
|
|
const char *combines, int replace);
|
|
|
|
extern void _quicksort (void *const pbase, size_t total_elems,
|
|
size_t size, __compar_fn_t cmp);
|
|
|
|
extern int __on_exit (void (*__func) (int __status, void *__arg), void *__arg);
|
|
|
|
extern int __cxa_atexit (void (*func) (void *), void *arg, void *d);
|
|
|
|
extern void __cxa_finalize (void *d);
|
|
|
|
extern int __posix_memalign (void **memptr, size_t alignment, size_t size)
|
|
__attribute_malloc__;
|
|
extern void *__libc_memalign (size_t alignment, size_t size)
|
|
__attribute_malloc__;
|
|
|
|
extern int __libc_system (const char *line);
|
|
|
|
extern double ____strtod_l_internal (__const char *__restrict __nptr,
|
|
char **__restrict __endptr, int __group,
|
|
__locale_t __loc) __THROW;
|
|
extern float ____strtof_l_internal (__const char *__restrict __nptr,
|
|
char **__restrict __endptr, int __group,
|
|
__locale_t __loc) __THROW;
|
|
extern long double ____strtold_l_internal (__const char *__restrict __nptr,
|
|
char **__restrict __endptr,
|
|
int __group, __locale_t __loc)
|
|
__THROW;
|
|
extern long int ____strtol_l_internal (__const char *__restrict __nptr,
|
|
char **__restrict __endptr,
|
|
int __base, int __group,
|
|
__locale_t __loc) __THROW;
|
|
extern unsigned long int ____strtoul_l_internal (__const char *
|
|
__restrict __nptr,
|
|
char **__restrict __endptr,
|
|
int __base, int __group,
|
|
__locale_t __loc) __THROW;
|
|
__extension__
|
|
extern long long int ____strtoll_l_internal (__const char *__restrict __nptr,
|
|
char **__restrict __endptr,
|
|
int __base, int __group,
|
|
__locale_t __loc) __THROW;
|
|
__extension__
|
|
extern unsigned long long int ____strtoull_l_internal (__const char *
|
|
__restrict __nptr,
|
|
char **
|
|
__restrict __endptr,
|
|
int __base, int __group,
|
|
__locale_t __loc)
|
|
__THROW;
|
|
|
|
extern __inline double
|
|
__strtod_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
|
__locale_t __loc) __THROW
|
|
{
|
|
return ____strtod_l_internal (__nptr, __endptr, 0, __loc);
|
|
}
|
|
extern __inline long int
|
|
__strtol_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
|
int __base, __locale_t __loc) __THROW
|
|
{
|
|
return ____strtol_l_internal (__nptr, __endptr, __base, 0, __loc);
|
|
}
|
|
extern __inline unsigned long int
|
|
__strtoul_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
|
int __base, __locale_t __loc) __THROW
|
|
{
|
|
return ____strtoul_l_internal (__nptr, __endptr, __base, 0, __loc);
|
|
}
|
|
extern __inline float
|
|
__strtof_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
|
__locale_t __loc) __THROW
|
|
{
|
|
return ____strtof_l_internal (__nptr, __endptr, 0, __loc);
|
|
}
|
|
extern __inline long double
|
|
__strtold_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
|
__locale_t __loc) __THROW
|
|
{
|
|
return ____strtold_l_internal (__nptr, __endptr, 0, __loc);
|
|
}
|
|
__extension__ extern __inline long long int
|
|
__strtoll_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
|
int __base, __locale_t __loc) __THROW
|
|
{
|
|
return ____strtoll_l_internal (__nptr, __endptr, __base, 0, __loc);
|
|
}
|
|
__extension__ extern __inline unsigned long long int
|
|
__strtoull_l (__const char * __restrict __nptr, char **__restrict __endptr,
|
|
int __base, __locale_t __loc) __THROW
|
|
{
|
|
return ____strtoull_l_internal (__nptr, __endptr, __base, 0, __loc);
|
|
}
|
|
|
|
#endif
|
|
#undef __Need_M_And_C
|
|
|
|
#endif /* include/stdlib.h */
|