summaryrefslogtreecommitdiff
path: root/src/csplit.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/csplit.c
parent08b596b409bf395b4bf2d3b0a876065056c95549 (diff)
downloadcoreutils-1f88c647cd9383334a1bb9f175491669e87b16a4.tar.xz
[!WITH_REGEX]: Include rx.h.
Diffstat (limited to 'src/csplit.c')
-rw-r--r--src/csplit.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/csplit.c b/src/csplit.c
index fee898a6e..f3a879a8e 100644
--- a/src/csplit.c
+++ b/src/csplit.c
@@ -36,7 +36,11 @@
# define INT_MAX ((int) (UINT_MAX >> 1))
#endif
-#include "regex.h"
+#if WITH_REGEX
+# include <regex.h>
+#else
+# include <rx.h>
+#endif
#include "system.h"
#include "version.h"
#include "error.h"