[trunk] remove a warning when using strict prototype
This commit is contained in:
parent
2001932c56
commit
b478912910
|
@ -181,7 +181,8 @@ static void dump_array16(int array[],int size){
|
||||||
printf("0x%04x\n};\n\n", array[size]);
|
printf("0x%04x\n};\n\n", array[size]);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(){
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
int i, j;
|
int i, j;
|
||||||
double u, v, t;
|
double u, v, t;
|
||||||
|
|
||||||
|
@ -190,6 +191,7 @@ int main(){
|
||||||
int lut_nmsedec_sig0[1 << T1_NMSEDEC_BITS];
|
int lut_nmsedec_sig0[1 << T1_NMSEDEC_BITS];
|
||||||
int lut_nmsedec_ref[1 << T1_NMSEDEC_BITS];
|
int lut_nmsedec_ref[1 << T1_NMSEDEC_BITS];
|
||||||
int lut_nmsedec_ref0[1 << T1_NMSEDEC_BITS];
|
int lut_nmsedec_ref0[1 << T1_NMSEDEC_BITS];
|
||||||
|
(void)argc; (void)argv;
|
||||||
|
|
||||||
printf("/* This file was automatically generated by t1_generate_luts.c */\n\n");
|
printf("/* This file was automatically generated by t1_generate_luts.c */\n\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue