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:
Larry Doolittle 2014-07-08 15:31:34 -07:00 committed by Cary R
parent 0dc12676f0
commit a575eeb29d
2 changed files with 6 additions and 6 deletions

View File

@ -127,7 +127,7 @@ __inline__ static int dump_header_pending(void)
* This function writes out all the traced variables, whether they * This function writes out all the traced variables, whether they
* changed or not. * changed or not.
*/ */
static void vcd_checkpoint() static void vcd_checkpoint(void)
{ {
struct vcd_info*cur; struct vcd_info*cur;
@ -135,7 +135,7 @@ static void vcd_checkpoint()
show_this_item(cur); show_this_item(cur);
} }
static void vcd_checkpoint_x() static void vcd_checkpoint_x(void)
{ {
struct vcd_info*cur; struct vcd_info*cur;
@ -879,7 +879,7 @@ static PLI_INT32 sys_dumpvars_calltf(ICARUS_VPI_CONST PLI_BYTE8*name)
return 0; return 0;
} }
void sys_fst_register() void sys_fst_register(void)
{ {
int idx; int idx;
struct t_vpi_vlog_info vlog_info; struct t_vpi_vlog_info vlog_info;

View File

@ -254,12 +254,12 @@ __inline__ static int dump_header_pending(void)
* This function writes out all the traced variables, whether they * This function writes out all the traced variables, whether they
* changed or not. * changed or not.
*/ */
static void vcd_checkpoint() static void vcd_checkpoint(void)
{ {
functor_all_vcd_info( show_this_item ); 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 ); functor_all_vcd_info( show_this_item_x );
} }
@ -873,7 +873,7 @@ static void* lxt2_thread(void*arg)
return 0; return 0;
} }
void sys_lxt2_register() void sys_lxt2_register(void)
{ {
int idx; int idx;
struct t_vpi_vlog_info vlog_info; struct t_vpi_vlog_info vlog_info;