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