From ad26ba05d466efdd5066af64723a0b331ab793d1 Mon Sep 17 00:00:00 2001 From: Galina Kistanova Date: Sat, 16 Dec 2017 02:54:17 +0000 Subject: [PATCH] =?UTF-8?q?Fixed=20warning=20'function=20declaration=20isn?= =?UTF-8?q?=E2=80=99t=20a=20prototype=20[-Werror=3Dstrict-prototypes]'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit llvm-svn: 320912 --- tools/llvm-c-test/debuginfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-c-test/debuginfo.c b/tools/llvm-c-test/debuginfo.c index 3f728948e02..c88c74167b6 100644 --- a/tools/llvm-c-test/debuginfo.c +++ b/tools/llvm-c-test/debuginfo.c @@ -14,7 +14,7 @@ #include "llvm-c/DebugInfo.h" #include -int llvm_test_dibuilder() { +int llvm_test_dibuilder(void) { LLVMModuleRef M = LLVMModuleCreateWithName("debuginfo.c"); LLVMDIBuilderRef DIB = LLVMCreateDIBuilder(M);