...
Noncompliant Code Example
In this NCEnoncompliant code example, the programmer chooses to use a local version of the standard library but does not make the change clear.
...
The solution addresses the problem by giving the local library a unique name (as per PRE08-C. Guarantee that header file names are unique), which makes it explicit apparent that the library used is not the original.
...
Risk Assessment
Using header file names that conflict with the C standard library functions other header file names can result in not including the intended filean incorrect file being included.
Recommendation | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
PRE04-C | low | unlikely | medium | P2 | L3 |
...