summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */