* include/malloc.h (_alloca): Add definition.
(alloca): Ditto.
This commit is contained in:
@ -61,9 +61,15 @@ extern "C" {
|
||||
but not W9x. On latter, they always set errno to ENOSYS.
|
||||
*/
|
||||
int _heapwalk (_HEAPINFO*);
|
||||
#ifdef __GNUC__
|
||||
#define _alloca(x) __builtin_alloca((x))
|
||||
#endif
|
||||
|
||||
#ifndef _NO_OLDNAMES
|
||||
int heapwalk (_HEAPINFO*);
|
||||
#ifdef __GNUC__
|
||||
#define alloca(x) __builtin_alloca((x))
|
||||
#endif
|
||||
#endif /* Not _NO_OLDNAMES */
|
||||
|
||||
int _heapchk (void); /* Verify heap integrety. */
|
||||
|
Reference in New Issue
Block a user