summaryrefslogtreecommitdiff
path: root/regex/debug.c
diff options
context:
space:
mode:
authorkent@mysql.com <>2005-09-29 02:08:24 +0200
committerkent@mysql.com <>2005-09-29 02:08:24 +0200
commit844d964f2d23e82697c0f3aed59dbf043f6e4128 (patch)
tree0554bc5de920ea134de4402fe122a1df5624513c /regex/debug.c
parent7e6a78a1aea10b27d549c9b3210266c5e73a0cc9 (diff)
downloadmariadb-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/debug.c')
-rw-r--r--regex/debug.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/regex/debug.c b/regex/debug.c
index bdd3e00d5a7..271b09bb27a 100644
--- a/regex/debug.c
+++ b/regex/debug.c
@@ -2,7 +2,8 @@
#include <m_ctype.h>
#include <m_string.h>
#include <sys/types.h>
-#include <regex.h>
+
+#include "my_regex.h"
#include "utils.h"
#include "regex2.h"
#include "debug.ih"
@@ -15,7 +16,7 @@
*/
void
regprint(r, d)
-regex_t *r;
+my_regex_t *r;
FILE *d;
{
register struct re_guts *g = r->re_g;