From: Erick Tryzelaar Date: Sun, 30 Aug 2009 23:38:06 +0000 (+0000) Subject: Make sure we specify no arguments for context functions. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bf4a68ebe2007b42f2f7750e655341a7126e25d9;p=oota-llvm.git Make sure we specify no arguments for context functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80525 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index e1a99531b55..40696e0aceb 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -208,8 +208,8 @@ void LLVMDisposeMessage(char *Message); /*===-- Modules -----------------------------------------------------------===*/ /* Create and destroy contexts. */ -LLVMContextRef LLVMContextCreate(); -LLVMContextRef LLVMGetGlobalContext(); +LLVMContextRef LLVMContextCreate(void); +LLVMContextRef LLVMGetGlobalContext(void); void LLVMContextDispose(LLVMContextRef C); /* Create and destroy modules. */