From: Jim Meyering Date: Sat, 4 Jul 1998 14:45:12 +0000 (+0000) Subject: Remove #ifdef around inclusion. X-Git-Tag: FILEUTILS-3_16s~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b809393beb212e8f89b0291395480ce704bd762;p=thirdparty%2Fcoreutils.git Remove #ifdef around inclusion. (extract_regexp): Remove #if !WITH_REGEX...#endif block. --- diff --git a/src/csplit.c b/src/csplit.c index d31f899795..685bfc19a6 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -28,11 +28,7 @@ #include "system.h" -#if WITH_REGEX -# include -#else -# include -#endif +#include #include "error.h" #include "xstrtoul.h" @@ -1150,9 +1146,6 @@ extract_regexp (int argnum, boolean ignore, char *str) p->re_compiled.buffer = (unsigned char *) xmalloc (p->re_compiled.allocated); p->re_compiled.fastmap = xmalloc (256); p->re_compiled.translate = 0; -#if !WITH_REGEX - p->re_compiled.syntax_parens = 0; -#endif err = re_compile_pattern (p->regexpr, len, &p->re_compiled); if (err) {