summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Williams <nico@cryptonector.com>2015-04-28 10:36:21 -0500
committerNicolas Williams <nico@cryptonector.com>2015-04-28 10:36:21 -0500
commit89963e13707386d6b11bf9719ed5e75c9405cab4 (patch)
tree9732426ff87ae1a5d3fa1395c494b1a4f0616e05
parent5d40f3a7c0d8e2343af98590b8ae95f54d581be0 (diff)
Fix header guards (fix #770)
-rw-r--r--jq.h6
-rw-r--r--locfile.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/jq.h b/jq.h
index 493bfce8..ab6e5d5b 100644
--- a/jq.h
+++ b/jq.h
@@ -1,5 +1,5 @@
-#ifndef _JQ_H_
-#define _JQ_H_
+#ifndef JQ_H
+#define JQ_H
#include <stdio.h>
#include <jv.h>
@@ -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 a7801916..9931b009 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"