diff options
author | Karl Williamson <khw@cpan.org> | 2020-10-17 09:12:59 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-11-02 09:36:08 -0700 |
commit | 21d0beeb9a699f56e9539bcc09631c6d1acc53ec (patch) | |
tree | f5526402fd7ccb157886b60cd00a9c4175c7afc5 /regcomp.h | |
parent | 3ef83dc34df59346719352833a594e66f6958b42 (diff) | |
download | perl-21d0beeb9a699f56e9539bcc09631c6d1acc53ec.tar.gz |
regcomp.h: Restrict scope of symbols to core
Everything defined here are internal symbols
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,7 +8,8 @@ * */ -#ifndef PERL_REGCOMP_H_ +#if ! defined(PERL_REGCOMP_H_) && ( defined(PERL_CORE) \ + || defined(PERL_EXT_RE_BUILD)) #define PERL_REGCOMP_H_ #include "regcharclass.h" |