EVM-C: Avoid examplevm_get_interface() being implicitly variadic

This commit is contained in:
Paweł Bylica 2016-08-29 10:37:46 +02:00
parent 12efc07993
commit 4b650928bb
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ struct evm_interface {
/// VM's interface. The function has to be named as `<vm-name>_get_interface()`.
///
/// @return VM interface
struct evm_interface examplevm_get_interface();
struct evm_interface examplevm_get_interface(void);
#if __cplusplus