summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/synctexdir
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-07-16 21:20:45 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-07-16 21:20:45 +0000
commitb47bc0b9634796aad01bdf39b27090dd5dbfda25 (patch)
tree512320010f06f63f7fd40f26cd9acd05881a8bf4 /Build/source/texk/web2c/synctexdir
parentdcbf19c32282b90aa3ebf0fc9366e9a49097303d (diff)
avoid to be included twice
git-svn-id: svn://tug.org/texlive/trunk@44824 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/synctexdir')
-rw-r--r--Build/source/texk/web2c/synctexdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser_utils.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog
index d76c9b10d35..e010960e577 100644
--- a/Build/source/texk/web2c/synctexdir/ChangeLog
+++ b/Build/source/texk/web2c/synctexdir/ChangeLog
@@ -1,3 +1,7 @@
+2017-07-16 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
+
+ * synctex_parser_utils.h: Avoid to be included twice.
+
2017-07-15 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* synctex_parser.c: Remove double definition of synctex_iterator_s.
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h
index cb26c0ab5c9..0f645511e29 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser_utils.h
@@ -38,6 +38,9 @@ authorization from the copyright holder.
*/
+#ifndef SYNCTEX_PARSER_UTILS_H
+#define SYNCTEX_PARSER_UTILS_H
+
/* The utilities declared here are subject to conditional implementation.
* All the operating system special stuff goes here.
* The problem mainly comes from file name management: path separator, encoding...
@@ -155,3 +158,4 @@ synctex_bool_t synctex_ignore_leading_dot_slash_in_path(const char ** name);
#endif
#endif
+#endif /* SYNCTEX_PARSER_UTILS_H */