diff options
| author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-08-23 17:20:20 -0700 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-08-27 19:19:30 +0200 |
| commit | 4490d52d0a4153a904676a2cae0c105d81c389cd (patch) | |
| tree | 0d6d871ff13a55f047e478501281b654dbef0b46 /tools/makefixed.c | |
| parent | 5fad6c557afc3e2e3f555604ac6ee33b726440e7 (diff) | |
| download | Project-Tick-4490d52d0a4153a904676a2cae0c105d81c389cd.tar.gz Project-Tick-4490d52d0a4153a904676a2cae0c105d81c389cd.zip | |
Rename table headers with tbl suffix.
Diffstat (limited to 'tools/makefixed.c')
| -rw-r--r-- | tools/makefixed.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/makefixed.c b/tools/makefixed.c index 66f4355dc1..4cc89a456c 100644 --- a/tools/makefixed.c +++ b/tools/makefixed.c @@ -38,15 +38,15 @@ void ZLIB_INTERNAL buildfixedtables(struct inflate_state *state) { } -// Create fixed tables on the fly and write out a inffixed.h file that is #include'd above. -// makefixed() writes those tables to stdout, which would be piped to inffixed.h. +// Create fixed tables on the fly and write out a inffixed_tbl.h file that is #include'd above. +// makefixed() writes those tables to stdout, which would be piped to inffixed_tbl.h. void makefixed(void) { unsigned low, size; struct inflate_state state; memset(&state, 0, sizeof(state)); buildfixedtables(&state); - puts(" /* inffixed.h -- table for decoding fixed codes"); + puts(" /* inffixed_tbl.h -- table for decoding fixed codes"); puts(" * Generated automatically by makefixed()."); puts(" */"); puts(""); @@ -82,9 +82,8 @@ void makefixed(void) { puts("\n };"); } -// The output of this application can be piped out to recreate inffixed.h +// The output of this application can be piped out to recreate inffixed_tbl.h int main(void) { makefixed(); return 0; } - |
