Ejemplo

#ifndef HEADER_H_
#define HEADER_H_

const int constant = 2.718;

#endif

Solución
No inicialice variables en los archivos de cabecera.

#ifndef HEADER_H_
#define HEADER_H_

#ifndef CONSTANT
#define CONSTANT 2.718
#endif

#endif