diff options
author | David Mitchell <davem@iabyn.com> | 2017-04-18 09:21:17 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2017-04-18 09:21:17 +0100 |
commit | 28922db9cdcd7167db49e97fc5d4d16456ceff36 (patch) | |
tree | 1a823c8bd4213ddbea50d4c804b5a19dbf60852f /util.h | |
parent | 7335cb814c19345052a23bc4462c701ce734e6c5 (diff) | |
download | perl-28922db9cdcd7167db49e97fc5d4d16456ceff36.tar.gz |
add PERL_UTIL_H_ to util.h, not util.h
With v5.25.11-59-g7335cb8 I added an include guard. PERL_UTIL_H_,
but added it to util.c rather than util.h.
I am not a smart man....
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -8,6 +8,10 @@ * */ +#ifndef PERL_UTIL_H_ +#define PERL_UTIL_H_ + + #ifdef VMS # define PERL_FILE_IS_ABSOLUTE(f) \ (*(f) == '/' \ @@ -236,6 +240,8 @@ means arg not present, 1 is empty string/null byte */ ((char *) memmem(big, bigend - big, little, lend - little)) #endif +#endif /* PERL_UTIL_H_ */ + /* * ex: set ts=8 sts=4 sw=4 et: */ |