From 9d7458697f94ee4c7219bdc6662f46f636849d8e Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 11 Dec 2012 20:34:31 -0700 Subject: [PATCH] handy.h: Guard against recursive #inclusion --- handy.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/handy.h b/handy.h index 9f67d44..17379db 100644 --- a/handy.h +++ b/handy.h @@ -8,6 +8,9 @@ * */ +#ifndef HANDY_H /* Guard against nested #inclusion */ +#define HANDY_H + #if !defined(__STDC__) #ifdef NULL #undef NULL @@ -1551,6 +1554,8 @@ void Perl_mem_log_del_sv(const SV *sv, const char *filename, const int linenumbe # define deprecate(s) Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), "Use of " s " is deprecated") #endif +#endif /* HANDY_H */ + /* * Local variables: * c-indentation-style: bsd -- 2.7.4