Use PCRE_STATIC pcre_plugin.c

This commit is contained in:
Vladimir Dubrovin 2025-03-14 18:03:26 +03:00 committed by GitHub
parent 74081c8146
commit 4de45ff3a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,14 +7,13 @@
#include "../../structures.h" #include "../../structures.h"
#include <string.h> #include <string.h>
#define PCRE_STATIC
#include "pcre.h" #include "pcre.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#define PCRE_STATIC
#ifndef isnumber #ifndef isnumber
#define isnumber(i_n_arg) ((i_n_arg>='0')&&(i_n_arg<='9')) #define isnumber(i_n_arg) ((i_n_arg>='0')&&(i_n_arg<='9'))
#endif #endif