Example

#ifndef HEADER_H_
#define HEADER_H_

const int constant = 2.718;

#endif

Solution
Do not initialize variables in header files.

#ifndef HEADER_H_
#define HEADER_H_

#ifndef CONSTANT
#define CONSTANT 2.718
#endif

#endif