From 89963e13707386d6b11bf9719ed5e75c9405cab4 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Tue, 28 Apr 2015 10:36:21 -0500 Subject: [PATCH] Fix header guards (fix #770) --- jq.h | 6 +++--- locfile.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jq.h b/jq.h index 493bfce..ab6e5d5 100644 --- a/jq.h +++ b/jq.h @@ -1,5 +1,5 @@ -#ifndef _JQ_H_ -#define _JQ_H_ +#ifndef JQ_H +#define JQ_H #include #include @@ -47,4 +47,4 @@ int jq_util_input_open_errors(jq_util_input_state); jv jq_util_input_next_input(jq_util_input_state); jv jq_util_input_next_input_cb(jq_state *, void *); -#endif /* !_JQ_H_ */ +#endif /* !JQ_H */ diff --git a/locfile.h b/locfile.h index a780191..9931b00 100644 --- a/locfile.h +++ b/locfile.h @@ -1,5 +1,5 @@ -#ifndef _LOCFILE_H -#define _LOCFILE_H +#ifndef LOCFILE_H +#define LOCFILE_H #include "jq.h" -- 2.40.0