diff options
author | Karl Williamson <khw@cpan.org> | 2017-04-20 10:16:11 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-06-02 12:47:18 -0600 |
commit | 6a5bc5acd0f35a93138716f5c3681baa1e139c65 (patch) | |
tree | ce611dc3dd62d8e879ea0fe2c9bfe369733a916b /XSUB.h | |
parent | b063b0a874bbc4724894885b0a633865675db9ff (diff) | |
download | perl-6a5bc5acd0f35a93138716f5c3681baa1e139c65.tar.gz |
Use new paradigm for hdr file double inclusion guard
We changed to use symbols not likely to be used by non-Perl code that
could conflict, and which have trailing underbars, so they don't look
like a regular Perl #define.
See https://rt.perl.org/Ticket/Display.html?id=131110
There are many more header files which are not guarded.
Diffstat (limited to 'XSUB.h')
-rw-r--r-- | XSUB.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,8 +8,8 @@ * */ -#ifndef _INC_PERL_XSUB_H -#define _INC_PERL_XSUB_H 1 +#ifndef PERL_XSUB_H_ +#define PERL_XSUB_H_ 1 /* first, some documentation for xsubpp-generated items */ @@ -703,7 +703,7 @@ Rethrows a previously caught exception. See L<perlguts/"Exception Handling">. # endif /* NO_XSLOCKS */ #endif /* PERL_IMPLICIT_SYS && !PERL_CORE */ -#endif /* _INC_PERL_XSUB_H */ /* include guard */ +#endif /* PERL_XSUB_H_ */ /* include guard */ /* * ex: set ts=8 sts=4 sw=4 et: |