diff options
author | Jim Meyering <jim@meyering.net> | 1998-07-04 14:45:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-07-04 14:45:29 +0000 |
commit | 52fa9ac2355b3fa811b9a6351b9f31445b081f0b (patch) | |
tree | 10712abcfa1c8c73d8316ea84adae60eab0b6ea2 | |
parent | 9b809393beb212e8f89b0291395480ce704bd762 (diff) | |
download | coreutils-52fa9ac2355b3fa811b9a6351b9f31445b081f0b.tar.xz |
Remove #ifdef around <regex.h> inclusion.
-rw-r--r-- | src/nl.c | 6 | ||||
-rw-r--r-- | src/tac.c | 6 |
2 files changed, 2 insertions, 10 deletions
@@ -27,11 +27,7 @@ #include "linebuffer.h" #include "system.h" -#if WITH_REGEX -# include <regex.h> -#else -# include <rx.h> -#endif +#include <regex.h> #include "error.h" #include "xstrtol.h" @@ -42,11 +42,7 @@ tac -r -s '.\| #include <sys/types.h> #include "system.h" -#if WITH_REGEX -# include <regex.h> -#else -# include <rx.h> -#endif +#include <regex.h> #include "error.h" #include "safe-read.h" |