diff options
author | ache <ache@FreeBSD.org> | 1994-11-17 21:44:49 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-11-17 21:44:49 +0000 |
commit | 5c337b7c4ee9facaa871a34786000dbef01fb58e (patch) | |
tree | 1934a49b3aa22ee9716323e1202a49718d95de9f /gnu | |
parent | 8aa7a37ccea05f9b9ace655762ecee3fc54d1d97 (diff) | |
download | FreeBSD-src-5c337b7c4ee9facaa871a34786000dbef01fb58e.zip FreeBSD-src-5c337b7c4ee9facaa871a34786000dbef01fb58e.tar.gz |
Remove regex.h, it conflicts with our POSIX regex.h and we already
have it under different name: gnuregex.h (from libregex)
Change all references of <regex.h> to <gnuregex.h>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libg++/libg++/Regex.cc | 2 | ||||
-rw-r--r-- | gnu/lib/libg++/libg++/regex.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libg++/libg++/Regex.cc b/gnu/lib/libg++/libg++/Regex.cc index db9cdc3..37e564b 100644 --- a/gnu/lib/libg++/libg++/Regex.cc +++ b/gnu/lib/libg++/libg++/Regex.cc @@ -31,7 +31,7 @@ extern "C" { #if 1 #include <rx.h> #else -#include <regex.h> +#include <gnuregex.h> #endif } diff --git a/gnu/lib/libg++/libg++/regex.cc b/gnu/lib/libg++/libg++/regex.cc index db23a51..40b8498 100644 --- a/gnu/lib/libg++/libg++/regex.cc +++ b/gnu/lib/libg++/libg++/regex.cc @@ -114,7 +114,7 @@ init_syntax_once () #endif /* Get the interface, including the syntax bits. */ -#include "regex.h" +#include <gnuregex.h> /* These are the command codes that appear in compiled regular |