Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ffcccc
#include "stdio.h"  /* confusing, distinct from <stdio.h> */

/* ... */

Compliant Solution

...

Code Block
bgColor#ccccff
/* Using a local version of stdio.h */  
#include "mystdio.h"

/* ... */

...