// mine.h
#ifndef MINE_H
  #ifdef MINE_C
    #define EXTERN 
  #else
    #define EXTERN extern
  #endif
  EXTERN  int my_int;
                // the below is not needed and ...
  #undef EXTERN // could be the problem
#endif