summaryrefslogtreecommitdiff
path: root/include/llvm-c
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2017-11-02 20:58:58 +0000
committerAdrian Prantl <aprantl@apple.com>2017-11-02 20:58:58 +0000
commit2e63034efd79807891a4d201daeb434c2d26c609 (patch)
treefde7b39ef89c81b90f0ad2d3b448902f9da19fc5 /include/llvm-c
parent37bbee84d83c14043e07ea9d76bb7789c697eb6d (diff)
Add missing header guards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317267 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/DebugInfo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm-c/DebugInfo.h b/include/llvm-c/DebugInfo.h
index 15f6b57d883..2c2fdbdf173 100644
--- a/include/llvm-c/DebugInfo.h
+++ b/include/llvm-c/DebugInfo.h
@@ -14,6 +14,9 @@
///
//===----------------------------------------------------------------------===//
+#ifndef LLVM_C_DEBUGINFO_H
+#define LLVM_C_DEBUGINFO_H
+
#include "llvm-c/Core.h"
#ifdef __cplusplus
@@ -200,3 +203,5 @@ LLVMDIBuilderCreateDebugLocation(LLVMContextRef Ctx, unsigned Line,
#ifdef __cplusplus
} // end extern "C"
#endif
+
+#endif