Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4297555e
Commit
4297555e
authored
Jul 07, 1995
by
Richard M. Stallman
Browse files
Don't use relocatable allocator.
parent
60c3568d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/regex.c
src/regex.c
+4
-3
No files found.
src/regex.c
View file @
4297555e
...
...
@@ -260,7 +260,8 @@ char *alloca ();
/* Define how to allocate the failure stack. */
#ifdef REL_ALLOC
#if defined (REL_ALLOC) && !defined (REGEX_MALLOC)
#define REGEX_ALLOCATE_STACK(size) \
r_alloc (&failure_stack_ptr, (size))
#define REGEX_REALLOCATE_STACK(source, osize, nsize) \
...
...
@@ -268,7 +269,7 @@ char *alloca ();
#define REGEX_FREE_STACK(ptr) \
r_alloc_free (&failure_stack_ptr)
#else /* not
REL_ALLOC
*/
#else /* not
using relocating allocator
*/
#ifdef REGEX_MALLOC
...
...
@@ -286,7 +287,7 @@ char *alloca ();
#define REGEX_FREE_STACK(arg)
#endif /* not REGEX_MALLOC */
#endif /* not
REL_ALLOC
*/
#endif /* not
using relocating allocator
*/
/* True if `size1' is non-NULL and PTR is pointing anywhere inside
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment