fix boring C lint in header
With warnings turned sufficiently high in gcc, I get: .../vpi_user.h:568: warning: function declaration isn't a prototype when building VPI modules. Patch is trivial.
This commit is contained in:
parent
dba157600c
commit
186779c29b
|
|
@ -577,7 +577,7 @@ extern PLI_INT32 vpi_chk_error(p_vpi_error_info info);
|
||||||
|
|
||||||
|
|
||||||
/* This is the table of startup routines included in each module. */
|
/* This is the table of startup routines included in each module. */
|
||||||
extern DLLEXPORT void (*vlog_startup_routines[])();
|
extern DLLEXPORT void (*vlog_startup_routines[])(void);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue