regexpr name clashes with re_match

Monty (monty@tbyte.com)
Mon, 25 Jul 1994 18:33:40 GMT

The files regexpr.[hc] have name clashes with libsys on NEXTSTEP, and I
suppose on other BSD systems as well.

re_match is the main problem, I think. In regexpr it is defined as:
int re_match(regexp_t compiled, char *string, int size, int pos,
regexp_registers_t regs);

while in regex.h on my system it is:
extern int re_match(char *string, struct regex *r);

Is there any chance that this could be changed in the Python distribution
so that there isn't this name clash?

Monty
monty@tbyte.com