Rename libcelt/static_modes_(fixed|float).c to .h to better reflect

their usage and to make any toolchain that doesn't like to #include
.c file happy.
This commit is contained in:
Gregory Maxwell 2011-08-02 17:13:06 -04:00
parent 2852cb1486
commit 63fd63d665
6 changed files with 6 additions and 9 deletions

View file

@ -311,12 +311,9 @@ int main(int argc, char **argv)
return EXIT_FAILURE;
}
}
file = fopen(BASENAME ".c", "w");
file = fopen(BASENAME ".h", "w");
dump_modes(file, m, nb);
fclose(file);
/*file = fopen(BASENAME ".h", "w");
dump_header(file, m, nb);
fclose(file);*/
for (i=0;i<nb;i++)
celt_mode_destroy(m[i]);
free(m);