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.
(cherry picked from commit 186779c29b)
This commit is contained in:
parent
2e4810ac8a
commit
8c1b5be360
|
|
@ -565,7 +565,7 @@ extern PLI_INT32 vpi_chk_error(p_vpi_error_info info);
|
|||
|
||||
|
||||
/* 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