In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ab1d79fc5ab7e0b46b4fd02752a334c2a5c93ace?hp=defb77b559d3c08f94e6db14937a91a4cac8e204>

- Log -----------------------------------------------------------------
commit ab1d79fc5ab7e0b46b4fd02752a334c2a5c93ace
Author: David Mitchell <[email protected]>
Date:   Sun Apr 16 20:49:45 2017 +0100

    add include guard to util.h
    
    see RT #131110 for the bikeshedding on what name to use.
    
    Based on an original patch by Jim Schneider
-----------------------------------------------------------------------

Summary of changes:
 util.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/util.c b/util.c
index b324af43ed..2ca0291b80 100644
--- a/util.c
+++ b/util.c
@@ -21,6 +21,10 @@
  * dieing stuff, plus wrappers for malloc code.
  */
 
+#ifndef PERL_UTIL_H_
+#define PERL_UTIL_H_
+
+
 #include "EXTERN.h"
 #define PERL_IN_UTIL_C
 #include "perl.h"
@@ -6678,6 +6682,8 @@ Perl_dtrace_probe_phase(pTHX_ enum perl_phase phase)
 
 #endif
 
+#endif /* PERL_UTIL_H_ */
+
 /*
  * ex: set ts=8 sts=4 sw=4 et:
  */

--
Perl5 Master Repository

Reply via email to