...
Do not reuse standard header file names, system-specific header file names, or other header file names.
Non-Compliant Code Example
In this NCCE, 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-A. Guarantee that header file names are unique), which makes it explicit that the library used is not the original.
...