From a735a9c48155f6bc8b065a7b886e05035a458ae2 Mon Sep 17 00:00:00 2001 From: Gordon Henriksen Date: Sun, 4 May 2008 12:55:34 +0000 Subject: Use (void) instead of () in C code. llvm-svn: 50620 --- llvm/include/llvm-c/lto.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/include/llvm-c/lto.h') diff --git a/llvm/include/llvm-c/lto.h b/llvm/include/llvm-c/lto.h index e42271dea01..508e871ec4c 100644 --- a/llvm/include/llvm-c/lto.h +++ b/llvm/include/llvm-c/lto.h @@ -63,14 +63,14 @@ extern "C" { * Returns a printable string. */ extern const char* -lto_get_version(); +lto_get_version(void); /** * Returns the last error string or NULL if last operation was sucessful. */ extern const char* -lto_get_error_message(); +lto_get_error_message(void); /** @@ -160,7 +160,7 @@ lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index); * Returns NULL on error (check lto_get_error_message() for details). */ extern lto_code_gen_t -lto_codegen_create(); +lto_codegen_create(void); /** -- cgit v1.2.3