Use (void) instead of () in C code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50620 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gordon Henriksen
2008-05-04 12:55:34 +00:00
parent 5759f97f50
commit 16c1f44d91
3 changed files with 32 additions and 32 deletions

View File

@@ -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);
/**