]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/malloc.h
Correct range checking in mallopt/mxfast/tcache [BZ #25194]
[thirdparty/glibc.git] / include / malloc.h
CommitLineData
100351c3 1#ifndef _MALLOC_H
33a934a3 2#include <malloc/malloc.h>
100351c3 3
47755784 4# ifndef _ISOMAC
100351c3
UD
5
6/* In the GNU libc we rename the global variable
7 `__malloc_initialized' to `__libc_malloc_initialized'. */
8#define __malloc_initialized __libc_malloc_initialized
9/* Nonzero if the malloc is already initialized. */
10extern int __malloc_initialized attribute_hidden;
11
f1c5213d
RM
12struct malloc_state;
13typedef struct malloc_state *mstate;
14
47755784 15# endif /* !_ISOMAC */
100351c3 16#endif