From: Jim Blandy Date: Fri, 21 May 1993 23:39:17 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a3af366a2ee9a1be9796e1b9fe4e52081793d03;p=gcc.git *** empty log message *** From-SVN: r4535 --- diff --git a/gcc/alloca.c b/gcc/alloca.c index b83b35d277b..bc34529fdd2 100644 --- a/gcc/alloca.c +++ b/gcc/alloca.c @@ -42,10 +42,6 @@ lose #endif /* static */ #endif /* emacs */ -#ifdef emacs -#define free xfree -#endif - /* If your stack is a linked list of frames, you have to provide an "address metric" ADDRESS_FUNCTION macro. */ @@ -64,8 +60,6 @@ typedef char *pointer; #define NULL 0 -extern pointer xmalloc (); - /* Define STACK_DIRECTION if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. @@ -181,7 +175,7 @@ alloca (size) /* Allocate combined header + user data storage. */ { - register pointer new = xmalloc (sizeof (header) + size); + register pointer new = malloc (sizeof (header) + size); /* Address of header. */ ((header *) new)->h.next = last_alloca_header;