diff options
author | kent@mysql.com <> | 2005-09-29 02:08:24 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2005-09-29 02:08:24 +0200 |
commit | 844d964f2d23e82697c0f3aed59dbf043f6e4128 (patch) | |
tree | 0554bc5de920ea134de4402fe122a1df5624513c /regex/regfree.c | |
parent | 7e6a78a1aea10b27d549c9b3210266c5e73a0cc9 (diff) | |
download | mariadb-git-844d964f2d23e82697c0f3aed59dbf043f6e4128.tar.gz |
Many files:
Prefix regex functions/types with "my_" as our
library is not compatible with normal regex lib.
my_regex.h:
Rename: regex/regex.h -> regex/my_regex.h
Diffstat (limited to 'regex/regfree.c')
-rw-r--r-- | regex/regfree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regex/regfree.c b/regex/regfree.c index 6ab50735075..f764fcdf84e 100644 --- a/regex/regfree.c +++ b/regex/regfree.c @@ -2,7 +2,7 @@ #include <sys/types.h> #include <stdio.h> #include <stdlib.h> -#include <regex.h> +#include "my_regex.h" #include "utils.h" #include "regex2.h" @@ -12,8 +12,8 @@ = extern void regfree(regex_t *); */ void -regfree(preg) -regex_t *preg; +my_regfree(preg) +my_regex_t *preg; { register struct re_guts *g; |