summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-04-18 09:21:17 +0100
committerDavid Mitchell <davem@iabyn.com>2017-04-18 09:21:17 +0100
commit28922db9cdcd7167db49e97fc5d4d16456ceff36 (patch)
tree1a823c8bd4213ddbea50d4c804b5a19dbf60852f /util.h
parent7335cb814c19345052a23bc4462c701ce734e6c5 (diff)
downloadperl-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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/util.h b/util.h
index 8f4171bebc..12a1c470ee 100644
--- a/util.h
+++ b/util.h
@@ -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:
*/