diff options
author | Jim Meyering <jim@meyering.net> | 1998-07-04 01:44:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-07-04 01:44:01 +0000 |
commit | adfde624394b229879af0f0f2e5fa2b8ce51967d (patch) | |
tree | 903a4a486e979f8786ea814b2a632b3bb8f6b7f3 /lib | |
parent | 4b05962106d7e43d38b3996a272ea4ea957045ce (diff) | |
download | coreutils-adfde624394b229879af0f0f2e5fa2b8ce51967d.tar.xz |
remove ifdef around inclusion of regex.h altogether!!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rpmatch.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/rpmatch.c b/lib/rpmatch.c index bf8219514..3a439d7e3 100644 --- a/lib/rpmatch.c +++ b/lib/rpmatch.c @@ -30,9 +30,7 @@ #endif #include <sys/types.h> -#if ! HAVE_LIBC_REGEX -# include <regex.h> -#endif +#include <regex.h> #if ENABLE_NLS # include <libintl.h> |