mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
cc35896ea3
Now that mcheck no longer needs to check __malloc_initialized (and no other third party hook can since the symbol is not exported), make the variable boolean and static so that it is used strictly within malloc. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
14 lines
182 B
C
14 lines
182 B
C
#ifndef _MALLOC_H
|
|
|
|
#include <malloc/malloc.h>
|
|
|
|
# ifndef _ISOMAC
|
|
# include <rtld-malloc.h>
|
|
|
|
struct malloc_state;
|
|
typedef struct malloc_state *mstate;
|
|
|
|
# endif /* !_ISOMAC */
|
|
|
|
#endif
|