Use C89 size_t for sizes from sizeof() or to malloc() or realloc().
Remove obsolete (unsigned) casts. Sizes were unsigned int in
traditional C but are size_t in C89.
Silence some clang warnings. Add the second pair of round brackets in
`while ((ff = ff->ff_next))` to silence -Wparentheses. Change
`if (nc_first(...))/*nothing*/;` to `(void)nc_first(...);` to silence
-Wempty-body. The code in compute.c nc_first() had the form
`if (x) if (y) s; else t;`. The old indentation (before
|
||
|---|---|---|
| .. | ||
| doc | ||
| lib | ||
| src | ||
| bootstrap.sh | ||
| build.lua | ||
| c.pm | ||
| COPYING | ||
| mkdistr.sh | ||
| pm | ||
| pmfile-ack | ||
| READ_ME | ||