Fix references to those files.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23710 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2009-11-22 18:46:13 +00:00
parent f9e024065b
commit 1832def9b0
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
adler32.c
crc32.c
crc32_png.c
inffast.c
inflate.c
inftrees.c

View file

@ -158,9 +158,9 @@ local void make_crc_table()
{
FILE *out;
out = fopen("crc32.h", "w");
out = fopen("crc32_png.h", "w");
if (out == NULL) return;
fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
fprintf(out, "/* crc32_png.h -- tables for rapid CRC calculation\n");
fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
fprintf(out, "local const unsigned long FAR ");
fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
@ -196,7 +196,7 @@ local void write_table(out, table)
/* ========================================================================
* Tables of CRC-32s of all single-byte values, made by make_crc_table().
*/
#include "crc32.h"
#include "crc32_png.h"
#endif /* DYNAMIC_CRC_TABLE */
/* =========================================================================