changeset 20413:c63314d7ca9c

[!WITH_REGEX]: Include rx.h. From Andreas Schwab.
author Jim Meyering <jim@meyering.net>
date Wed, 09 Oct 1996 11:55:22 +0000
parents 7bb9058cd636
children 42cacbbe1df3
files lib/rpmatch.c
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/rpmatch.c	Wed Oct 09 02:42:17 1996 +0000
+++ b/lib/rpmatch.c	Wed Oct 09 11:55:22 1996 +0000
@@ -30,7 +30,11 @@
 #endif
 
 #include <sys/types.h>
-#include <regex.h>
+#ifdef WITH_REGEX
+# include <regex.h>
+#else
+# include <rx.h>
+#endif
 
 #if ENABLE_NLS
 # include <libintl.h>