From ab1d79fc5ab7e0b46b4fd02752a334c2a5c93ace Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Sun, 16 Apr 2017 20:49:45 +0100 Subject: 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 --- util.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'util.c') 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: */ -- cgit v1.2.1