// Minimal compiler test for C compiler.
//

#include <string.h>

int i=0;

int
main (void)
{
  int i=1; // local and global defined i => danger of confusion; use hungarian notation (g_i, i) or somehing else
  return i;
}
