diff options
Diffstat (limited to 'alloca.c')
-rw-r--r-- | alloca.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -172,7 +172,7 @@ alloca (size) unsigned size; { auto char probe; /* Probes stack depth: */ - register char *depth = ADDRESS_FUNCTION (probe); + char *depth = ADDRESS_FUNCTION (probe); #if STACK_DIRECTION == 0 if (STACK_DIR == 0) /* Unknown growth direction. */ @@ -183,7 +183,7 @@ alloca (size) was allocated from deeper in the stack than currently. */ { - register header *hp; /* Traverses linked list. */ + header *hp; /* Traverses linked list. */ #ifdef emacs BLOCK_INPUT; @@ -193,7 +193,7 @@ alloca (size) if ((STACK_DIR > 0 && hp->h.deep > depth) || (STACK_DIR < 0 && hp->h.deep < depth)) { - register header *np = hp->h.next; + header *np = hp->h.next; free ((pointer) hp); /* Collect garbage. */ @@ -215,7 +215,7 @@ alloca (size) /* Allocate combined header + user data storage. */ { - register pointer new = malloc (sizeof (header) + size); + pointer new = malloc (sizeof (header) + size); /* Address of header. */ if (new == 0) |