Exemplo

#ifndef HEADER_H_
#define HEADER_H_

const int constant = 2.718;

#endif

Solução
Não inicialize variáveis em arquivos de cabeçalho.

#ifndef HEADER_H_
#define HEADER_H_

#ifndef CONSTANT
#define CONSTANT 2.718
#endif

#endif