mirror of git://sourceware.org/git/glibc.git
Update.
* elf/dl-minimal.c: Add prototypes. * include/locale.h: Add internal prototypes. * include/sys/gmon.h: Likewise.
This commit is contained in:
parent
a7cfa34189
commit
728c24ff87
|
|
@ -1,5 +1,10 @@
|
||||||
2000-12-28 Andreas Jaeger <aj@suse.de>
|
2000-12-28 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* elf/dl-minimal.c: Add prototypes.
|
||||||
|
|
||||||
|
* include/locale.h: Add internal prototypes.
|
||||||
|
* include/sys/gmon.h: Likewise.
|
||||||
|
|
||||||
* dlfcn/errmsg1mod.c: Add prototype for foo to shut up GCC.
|
* dlfcn/errmsg1mod.c: Add prototype for foo to shut up GCC.
|
||||||
|
|
||||||
2000-12-27 Ben Collins <bcollins@debian.org>
|
2000-12-27 Ben Collins <bcollins@debian.org>
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,20 @@
|
||||||
|
|
||||||
static void *alloc_ptr, *alloc_end, *alloc_last_block;
|
static void *alloc_ptr, *alloc_end, *alloc_last_block;
|
||||||
|
|
||||||
|
/* Declarations of global functions. */
|
||||||
|
extern void weak_function free (void *ptr);
|
||||||
|
extern void * weak_function realloc (void *ptr, size_t n);
|
||||||
|
extern long int weak_function __strtol_internal (const char *nptr,
|
||||||
|
char **endptr,
|
||||||
|
int base, int group);
|
||||||
|
extern long int weak_function strtol (const char *nptr, char **endptr,
|
||||||
|
int base);
|
||||||
|
extern unsigned long int weak_function __strtoul_internal
|
||||||
|
(const char *nptr, char **endptr, int base, int group);
|
||||||
|
extern unsigned long int weak_function strtoul (const char *nptr,
|
||||||
|
char **endptr, int base);
|
||||||
|
|
||||||
|
|
||||||
void * weak_function
|
void * weak_function
|
||||||
malloc (size_t n)
|
malloc (size_t n)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1 +1,7 @@
|
||||||
|
#ifndef _LOCALE_H
|
||||||
#include <locale/locale.h>
|
#include <locale/locale.h>
|
||||||
|
|
||||||
|
/* Now define the internal interfaces. */
|
||||||
|
extern struct lconv *__localeconv (void);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,10 @@
|
||||||
/* Write current profiling data to file. */
|
/* Write current profiling data to file. */
|
||||||
extern void __write_profiling (void);
|
extern void __write_profiling (void);
|
||||||
extern void write_profiling (void);
|
extern void write_profiling (void);
|
||||||
|
|
||||||
|
struct __bb;
|
||||||
|
extern void __bb_init_func (struct __bb *bb);
|
||||||
|
extern void __bb_exit_func (void);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue