...
Code Block | ||
---|---|---|
| ||
#include "stdio.h" /* confusing, distinct from <stdio.h> */ /* ... */ |
Compliant Solution
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. Wiki Markup
Code Block | ||
---|---|---|
| ||
/* Using a local version of stdio.h */ #include "mystdio.h" /* ... */ |
...