summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-07-04 14:45:29 +0000
committerJim Meyering <jim@meyering.net>1998-07-04 14:45:29 +0000
commit52fa9ac2355b3fa811b9a6351b9f31445b081f0b (patch)
tree10712abcfa1c8c73d8316ea84adae60eab0b6ea2 /src
parent9b809393beb212e8f89b0291395480ce704bd762 (diff)
downloadcoreutils-52fa9ac2355b3fa811b9a6351b9f31445b081f0b.tar.xz
Remove #ifdef around <regex.h> inclusion.
Diffstat (limited to 'src')
-rw-r--r--src/nl.c6
-rw-r--r--src/tac.c6
2 files changed, 2 insertions, 10 deletions
diff --git a/src/nl.c b/src/nl.c
index 6a7fab259..7f01e3070 100644
--- a/src/nl.c
+++ b/src/nl.c
@@ -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"
diff --git a/src/tac.c b/src/tac.c
index b27446156..1716fcc31 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -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"