You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
472 B

Index: src/pcre2posix.h
--- src/pcre2posix.h.orig 2015-03-07 16:58:26.118515000 +0100
+++ src/pcre2posix.h 2015-03-07 16:59:07.818521597 +0100
@@ -131,6 +131,12 @@
# endif
#endif
+/* link-time symbol namespace conflict prevention */
+#define regcomp pcreposix_regcomp
+#define regexec pcreposix_regexec
+#define regerror pcreposix_regerror
+#define regfree pcreposix_regfree
+
/* The functions */
PCRE2POSIX_EXP_DECL int regcomp(regex_t *, const char *, int);