From: Nicolas Williams Date: Tue, 28 Apr 2015 15:36:21 +0000 (-0500) Subject: Fix header guards (fix #770) X-Git-Tag: jq-1.5rc2~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89963e13707386d6b11bf9719ed5e75c9405cab4;p=jq Fix header guards (fix #770) --- 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"