From cd27af2a407c38c042302643f87ef50a25f31fd1 Mon Sep 17 00:00:00 2001 From: Galina Kistanova Date: Sat, 16 Dec 2017 02:54:17 +0000 Subject: [PATCH] =?utf8?q?Fixed=20warning=20'function=20declaration=20isn?= =?utf8?q?=E2=80=99t=20a=20prototype=20[-Werror=3Dstrict-prototypes]'?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@320912 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); -- 2.50.0