More fussing with C function prototypes
Six more -Wstrict-prototypes updates that I missed on the first pass. The remaining warnings of this type originate in the lz4 code base.
This commit is contained in:
parent
0dc12676f0
commit
a575eeb29d
|
|
@ -127,7 +127,7 @@ __inline__ static int dump_header_pending(void)
|
|||
* This function writes out all the traced variables, whether they
|
||||
* changed or not.
|
||||
*/
|
||||
static void vcd_checkpoint()
|
||||
static void vcd_checkpoint(void)
|
||||
{
|
||||
struct vcd_info*cur;
|
||||
|
||||
|
|
@ -135,7 +135,7 @@ static void vcd_checkpoint()
|
|||
show_this_item(cur);
|
||||
}
|
||||
|
||||
static void vcd_checkpoint_x()
|
||||
static void vcd_checkpoint_x(void)
|
||||
{
|
||||
struct vcd_info*cur;
|
||||
|
||||
|
|
@ -879,7 +879,7 @@ static PLI_INT32 sys_dumpvars_calltf(ICARUS_VPI_CONST PLI_BYTE8*name)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void sys_fst_register()
|
||||
void sys_fst_register(void)
|
||||
{
|
||||
int idx;
|
||||
struct t_vpi_vlog_info vlog_info;
|
||||
|
|
|
|||
|
|
@ -254,12 +254,12 @@ __inline__ static int dump_header_pending(void)
|
|||
* This function writes out all the traced variables, whether they
|
||||
* changed or not.
|
||||
*/
|
||||
static void vcd_checkpoint()
|
||||
static void vcd_checkpoint(void)
|
||||
{
|
||||
functor_all_vcd_info( show_this_item );
|
||||
}
|
||||
|
||||
static void vcd_checkpoint_x()
|
||||
static void vcd_checkpoint_x(void)
|
||||
{
|
||||
functor_all_vcd_info( show_this_item_x );
|
||||
}
|
||||
|
|
@ -873,7 +873,7 @@ static void* lxt2_thread(void*arg)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void sys_lxt2_register()
|
||||
void sys_lxt2_register(void)
|
||||
{
|
||||
int idx;
|
||||
struct t_vpi_vlog_info vlog_info;
|
||||
|
|
|
|||
Loading…
Reference in New Issue