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 6a7fab2..7f01e30 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 b274461..1716fcc 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"