1#include "static-2.h"
2int bar(void)
3{
4  static int counter;
5  return counter++;
6}
7