mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
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:
@@ -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);
|
||||
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user