Synopsis: | Identifiers must be given for all or none of the parameters in a function prototype declaration. |
Language: | C |
Severity Level: | 7 |
Category: | EXTERNAL DECLARATIONS |
Description: |
Departures can lead to undefined behaviour.
Example: int spellchk(char*, FILE* dictionary); /* bad */ int spellchk(char* word, FILE* dictionary); /* good */ |