From 0396460c8416e9ad2eea462a9ef1b48a6a7d7502 Mon Sep 17 00:00:00 2001 From: Michal Z Date: Tue, 6 Nov 2018 11:27:11 +0100 Subject: [PATCH] Fix include guards in regex and utime The include_guard in both regex and utime was "_TEMPLATE_H", this meant that including both wasn't possible. Their header guards should be consistent with the header files as well. Changed _TEMPLATE_H to _REGEX_H and _UTIME_H in /regex/cbindgen.toml and /utime/cbindgen.toml respectively. --- src/header/regex/cbindgen.toml | 2 +- src/header/utime/cbindgen.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/header/regex/cbindgen.toml b/src/header/regex/cbindgen.toml index e027cd276b..a13c06224d 100644 --- a/src/header/regex/cbindgen.toml +++ b/src/header/regex/cbindgen.toml @@ -1,5 +1,5 @@ sys_includes = ["sys/types.h"] -include_guard = "_TEMPLATE_H" +include_guard = "_REGEX_H" language = "C" style = "Type" diff --git a/src/header/utime/cbindgen.toml b/src/header/utime/cbindgen.toml index 37ed9f83d8..379382d804 100644 --- a/src/header/utime/cbindgen.toml +++ b/src/header/utime/cbindgen.toml @@ -1,5 +1,5 @@ sys_includes = [] -include_guard = "_TEMPLATE_H" +include_guard = "_UTIME_H" language = "C" style = "Tag"