pcre.patch 531 B

1234567891011121314151617
  1. Index: pcreposix.h
  2. --- pcreposix.h.orig 2007-08-01 11:06:39 +0200
  3. +++ pcreposix.h 2007-11-01 20:28:15 +0100
  4. @@ -129,6 +129,12 @@
  5. /* The functions */
  6. +/* link-time symbol namespace conflict prevention */
  7. +#define regcomp pcreposix_regcomp
  8. +#define regexec pcreposix_regexec
  9. +#define regerror pcreposix_regerror
  10. +#define regfree pcreposix_regfree
  11. +
  12. PCREPOSIX_EXP_DECL int regcomp(regex_t *, const char *, int);
  13. PCREPOSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t,
  14. regmatch_t *, int);