...
Code Block | ||
---|---|---|
| ||
#include "stdio.h" /* confusing, distinct from <stdio.h> */
/* ... */
|
Compliant Solution
...
Code Block | ||
---|---|---|
| ||
/* Using a local version of stdio.h */Â #include "mystdio.h" /* ... */ |
...
...
Code Block | ||
---|---|---|
| ||
#include "stdio.h" /* confusing, distinct from <stdio.h> */
/* ... */
|
...
Code Block | ||
---|---|---|
| ||
/* Using a local version of stdio.h */Â #include "mystdio.h" /* ... */ |
...