From f4a6f0482b24552ff9bff49c3a83bcbcab0d70c9 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 17 Jul 1995 23:24:57 +0000 Subject: [PATCH] Fix conditional. --- regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regex.c b/regex.c index 1af5ab0ed..9bb15d736 100644 --- a/regex.c +++ b/regex.c @@ -260,7 +260,7 @@ char *alloca (); /* Define how to allocate the failure stack. */ -#if defined (REL_ALLOC) && !defined (REGEX_MALLOC) +#if defined (REL_ALLOC) && defined (REGEX_MALLOC) #define REGEX_ALLOCATE_STACK(size) \ r_alloc (&failure_stack_ptr, (size)) -- 2.11.0