]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove #ifdef around <regex.h> inclusion.
authorJim Meyering <jim@meyering.net>
Sat, 4 Jul 1998 14:45:29 +0000 (14:45 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 4 Jul 1998 14:45:29 +0000 (14:45 +0000)
src/nl.c
src/tac.c

index 6a7fab2599d7a1679e5d6f2240591ccf1e8063b7..7f01e30703ff1f05689a50fa9a8813ddb8158c55 100644 (file)
--- a/src/nl.c
+++ b/src/nl.c
 #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"
index b274461568faefef078249dd0e133477aa5ddf5c..1716fcc318b2b1d35ef2e07a111bd890c0ba58c6 100644 (file)
--- 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"