summaryrefslogtreecommitdiff
path: root/gcc/alloca.c
diff options
context:
space:
mode:
authorjimb <jimb@138bc75d-0d04-0410-961f-82ee72b054a4>1993-05-21 23:39:17 +0000
committerjimb <jimb@138bc75d-0d04-0410-961f-82ee72b054a4>1993-05-21 23:39:17 +0000
commit26c7c3b1d335310bea740c94f94b60f02905004f (patch)
tree297bc99604d4645a255aed28d19bd17bd682e632 /gcc/alloca.c
parentc311eede660c897933af1c122a229c25f9850329 (diff)
downloadgcc-26c7c3b1d335310bea740c94f94b60f02905004f.tar.gz
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4535 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alloca.c')
-rw-r--r--gcc/alloca.c8
1 files changed, 1 insertions, 7 deletions
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;