summaryrefslogtreecommitdiff
path: root/src/tac.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-12-06 23:39:26 +0000
committerJim Meyering <jim@meyering.net>1995-12-06 23:39:26 +0000
commit1f88c647cd9383334a1bb9f175491669e87b16a4 (patch)
tree9e848eabc6fc8afe98a2fc432f804246eb2f6800 /src/tac.c
parent08b596b409bf395b4bf2d3b0a876065056c95549 (diff)
downloadcoreutils-1f88c647cd9383334a1bb9f175491669e87b16a4.tar.xz
[!WITH_REGEX]: Include rx.h.
Diffstat (limited to 'src/tac.c')
-rw-r--r--src/tac.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tac.c b/src/tac.c
index bcf352e7c..d96e17796 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -41,7 +41,11 @@ tac -r -s '.\|
#include <getopt.h>
#include <sys/types.h>
#include <signal.h>
-#include <regex.h>
+#if WITH_REGEX
+# include <regex.h>
+#else
+# include <rx.h>
+#endif
#include "system.h"
#include "version.h"
#include "error.h"