summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-04-16 20:49:45 +0100
committerDavid Mitchell <davem@iabyn.com>2017-04-16 20:51:52 +0100
commitab1d79fc5ab7e0b46b4fd02752a334c2a5c93ace (patch)
tree5a6aa3fad8933c1682465a515d96c3113813d753
parentdefb77b559d3c08f94e6db14937a91a4cac8e204 (diff)
downloadperl-ab1d79fc5ab7e0b46b4fd02752a334c2a5c93ace.tar.gz
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
-rw-r--r--util.c6
1 files changed, 6 insertions, 0 deletions
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:
*/