1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

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
This commit is contained in:
kent@mysql.com
2005-09-29 02:08:24 +02:00
parent 7e6a78a1ae
commit 844d964f2d
19 changed files with 97 additions and 96 deletions

View File

@@ -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;