Commit 5a3af366 by Jim Blandy

*** empty log message ***

From-SVN: r4535
parent ceaff0a8
...@@ -42,10 +42,6 @@ lose ...@@ -42,10 +42,6 @@ lose
#endif /* static */ #endif /* static */
#endif /* emacs */ #endif /* emacs */
#ifdef emacs
#define free xfree
#endif
/* If your stack is a linked list of frames, you have to /* If your stack is a linked list of frames, you have to
provide an "address metric" ADDRESS_FUNCTION macro. */ provide an "address metric" ADDRESS_FUNCTION macro. */
...@@ -64,8 +60,6 @@ typedef char *pointer; ...@@ -64,8 +60,6 @@ typedef char *pointer;
#define NULL 0 #define NULL 0
extern pointer xmalloc ();
/* Define STACK_DIRECTION if you know the direction of stack /* Define STACK_DIRECTION if you know the direction of stack
growth for your system; otherwise it will be automatically growth for your system; otherwise it will be automatically
deduced at run-time. deduced at run-time.
...@@ -181,7 +175,7 @@ alloca (size) ...@@ -181,7 +175,7 @@ alloca (size)
/* Allocate combined header + user data storage. */ /* Allocate combined header + user data storage. */
{ {
register pointer new = xmalloc (sizeof (header) + size); register pointer new = malloc (sizeof (header) + size);
/* Address of header. */ /* Address of header. */
((header *) new)->h.next = last_alloca_header; ((header *) new)->h.next = last_alloca_header;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment