M
Martin
When referring to the conforming declaration for main, Lint displays
Info 818: Pointer parameter 'argv' (line 3) could be declared as
pointing to const
Presumably it's saying that the definition could be:
int main(int argc, char *const *argv)
Why didn't C89 mandate that?
Info 818: Pointer parameter 'argv' (line 3) could be declared as
pointing to const
Presumably it's saying that the definition could be:
int main(int argc, char *const *argv)
Why didn't C89 mandate that?