Synopsis: | Including source files is not allowed. |
Language: | C |
Severity Level: | 6 |
Category: | Preprocessing Directives |
Description: |
Justification When including a source file, all its elements are included, such as local variables. This leads to name clashes and unpredictable behavior. Example #include "status.c" /* WRONG */ |