summaryrefslogtreecommitdiffstats
path: root/src/explain.h
diff options
context:
space:
mode:
authorJonathan Sternberg <jonathansternberg@gmail.com>2012-05-28 02:09:35 (GMT)
committerJonathan Sternberg <jonathansternberg@gmail.com>2012-05-30 17:27:46 (GMT)
commit2cb91b528aeeb013bd6c61b3d09ebf3601bf1fee (patch)
tree1ec68df3e3385928b3d4ec64198648d7bc8af5e8 /src/explain.h
parentb6664431cb5275389d6e25d5e29c67796b7281e7 (diff)
downloadNinja-2cb91b528aeeb013bd6c61b3d09ebf3601bf1fee.zip
Ninja-2cb91b528aeeb013bd6c61b3d09ebf3601bf1fee.tar.gz
Ninja-2cb91b528aeeb013bd6c61b3d09ebf3601bf1fee.tar.bz2
Header guards were missing from some header files.
Diffstat (limited to 'src/explain.h')
-rw-r--r--src/explain.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/explain.h b/src/explain.h
index 021f0d4..d4f6a6c 100644
--- a/src/explain.h
+++ b/src/explain.h
@@ -12,6 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+#ifndef NINJA_EXPLAIN_H_
+#define NINJA_EXPLAIN_H_
+
#include <stdio.h>
#define EXPLAIN(fmt, ...) { \
@@ -20,3 +23,5 @@
}
extern bool g_explaining;
+
+#endif // NINJA_EXPLAIN_H_