enum Month {January, February, March, April, May, June, July,
August, September, October, November, December};
enum ShortMonth {Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec};
May is a common element in both enums, so the compiler says redeclaration of enumerator `mei'. Why? And how can I circumvent this?