diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2014-04-22 11:44:54 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2014-04-22 11:44:54 +0200 |
commit | 4d8ad7d87072bc1631d0b949930f4869e56b7b99 (patch) | |
tree | 304498a232ad457ff6937d94266e3a86c5d3eab5 /src/config.h | |
parent | 274324aab47c51d6c07ace5e219d196077c3e5d1 (diff) | |
download | pianobar-4d8ad7d87072bc1631d0b949930f4869e56b7b99.tar.gz pianobar-4d8ad7d87072bc1631d0b949930f4869e56b7b99.tar.bz2 pianobar-4d8ad7d87072bc1631d0b949930f4869e56b7b99.zip |
Fix include guards
Macros starting with _ are reserved (see
http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html).
Fixes #440.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |