summaryrefslogtreecommitdiff
path: root/feature.h
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2018-11-28 22:50:29 -0500
committerJames E Keenan <jkeenan@cpan.org>2018-12-04 21:39:19 -0500
commit3dd7db2969bdf599c8ef565a6173f71e2961362e (patch)
tree6d3b216759d8b534a4a894709336bfebd743ebb2 /feature.h
parentbf5c7c7dda5ab51eb76dfb8282ec8fa20cea9363 (diff)
downloadperl-3dd7db2969bdf599c8ef565a6173f71e2961362e.tar.gz
Provide header guards to prevent re-inclusion
Per LGTM analysis: https://lgtm.com/projects/g/Perl/perl5/alerts/?mode=tree&ruleFocus=2163210746 and LGTM recommendation: https://lgtm.com/rules/2163210746/ For: RT 133699
Diffstat (limited to 'feature.h')
-rw-r--r--feature.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/feature.h b/feature.h
index 52ace09f6d..3877e16efe 100644
--- a/feature.h
+++ b/feature.h
@@ -5,6 +5,9 @@
*/
+#ifndef PERL_FEATURE_H_
+#define PERL_FEATURE_H_
+
#if defined(PERL_CORE) || defined (PERL_EXT)
#define HINT_FEATURE_SHIFT 26
@@ -162,4 +165,6 @@ S_enable_feature_bundle(pTHX_ SV *ver)
}
#endif /* PERL_IN_OP_C */
+#endif /* PERL_FEATURE_H_ */
+
/* ex: set ro: */