diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-11 20:34:31 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-22 11:11:26 -0700 |
commit | 9d7458697f94ee4c7219bdc6662f46f636849d8e (patch) | |
tree | b3f7ab094fadbc0cea9f08fd652f0de093ad6044 /handy.h | |
parent | 79a81a6e4b26aadba3f876ec8115add7ce4055e5 (diff) | |
download | perl-9d7458697f94ee4c7219bdc6662f46f636849d8e.tar.gz |
handy.h: Guard against recursive #inclusion
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |