diff options
Diffstat (limited to 'regex')
-rw-r--r-- | regex/debug.c | 2 | ||||
-rw-r--r-- | regex/main.c | 2 | ||||
-rw-r--r-- | regex/regcomp.c | 2 | ||||
-rw-r--r-- | regex/regerror.c | 2 | ||||
-rw-r--r-- | regex/regexec.c | 2 | ||||
-rw-r--r-- | regex/regexp.c | 2 | ||||
-rw-r--r-- | regex/regfree.c | 2 | ||||
-rw-r--r-- | regex/reginit.c | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/regex/debug.c b/regex/debug.c index 8c6fd14a209..35279941d48 100644 --- a/regex/debug.c +++ b/regex/debug.c @@ -1,4 +1,4 @@ -#include <global.h> +#include <my_global.h> #include <m_ctype.h> #include <m_string.h> #include <sys/types.h> diff --git a/regex/main.c b/regex/main.c index 4b607f401ca..eac7293bf45 100644 --- a/regex/main.c +++ b/regex/main.c @@ -1,4 +1,4 @@ -#include <global.h> +#include <my_global.h> #include <m_string.h> #include <sys/types.h> #include <regex.h> diff --git a/regex/regcomp.c b/regex/regcomp.c index 048f45ca71c..688b8ce7464 100644 --- a/regex/regcomp.c +++ b/regex/regcomp.c @@ -1,4 +1,4 @@ -#include <global.h> +#include <my_global.h> #include <m_string.h> #include <m_ctype.h> #include <regex.h> diff --git a/regex/regerror.c b/regex/regerror.c index a356912564a..4a28f6e9d24 100644 --- a/regex/regerror.c +++ b/regex/regerror.c @@ -1,4 +1,4 @@ -#include <global.h> +#include <my_global.h> #include <m_string.h> #include <m_ctype.h> #include <regex.h> diff --git a/regex/regexec.c b/regex/regexec.c index 853bd7aa263..7f2704f8214 100644 --- a/regex/regexec.c +++ b/regex/regexec.c @@ -5,7 +5,7 @@ * macros that code uses. This lets the same code operate on two different * representations for state sets. */ -#include <global.h> +#include <my_global.h> #include <m_string.h> #include <m_ctype.h> #include <regex.h> diff --git a/regex/regexp.c b/regex/regexp.c index 706208a6b25..8ddf90f2943 100644 --- a/regex/regexp.c +++ b/regex/regexp.c @@ -58,7 +58,7 @@ */ /* Headers */ -#include "global.h" +#include "my_global.h" #include <ctype.h> #include "regexp.h" #ifdef __WIN__ diff --git a/regex/regfree.c b/regex/regfree.c index a0dd8087a45..6ab50735075 100644 --- a/regex/regfree.c +++ b/regex/regfree.c @@ -1,4 +1,4 @@ -#include <global.h> +#include <my_global.h> #include <sys/types.h> #include <stdio.h> #include <stdlib.h> diff --git a/regex/reginit.c b/regex/reginit.c index b5815e7d01c..06a48b16243 100644 --- a/regex/reginit.c +++ b/regex/reginit.c @@ -1,6 +1,6 @@ /* Init cclasses array from ctypes */ -#include <global.h> +#include <my_global.h> #include <m_ctype.h> #include <m_string.h> #include "cclass.h" |