From 4d8ad7d87072bc1631d0b949930f4869e56b7b99 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 22 Apr 2014 11:44:54 +0200 Subject: Fix include guards Macros starting with _ are reserved (see http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html). Fixes #440. --- src/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/config.h') diff --git a/src/config.h b/src/config.h index 61a75f4..355a910 100644 --- a/src/config.h +++ b/src/config.h @@ -1,9 +1,9 @@ -#ifndef _CONFIG_H -#define _CONFIG_H +#ifndef SRC_CONFIG_H_S6A1C09K +#define SRC_CONFIG_H_S6A1C09K /* package name */ #define PACKAGE "pianobar" #define VERSION "2013.09.15-dev" -#endif /* _CONFIG_H */ +#endif /* SRC_CONFIG_H_S6A1C09K */ -- cgit v1.2.3