diff options
author | Lubos Lunak <l.lunak@suse.cz> | 2012-12-23 22:25:49 +0100 |
---|---|---|
committer | Lubos Lunak <l.lunak@suse.cz> | 2012-12-26 13:56:43 +0100 |
commit | 8c0cb89a4f00704223101c8a380da1ceb33d706a (patch) | |
tree | 8ade402d695031543c1f041746a53a2e14f502eb | |
parent | 4cf17dc564669bde2bdb15de3677761f3ec59d76 (diff) |
multiple include guard for config_global.h
Strictly speaking not necessary, but it should prevent compilers
from needlessly opening the file repeatedly.
-rw-r--r-- | config/config_global.h.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/config_global.h.in b/config/config_global.h.in index 63effa9eab07..7080a69635ea 100644 --- a/config/config_global.h.in +++ b/config/config_global.h.in @@ -9,8 +9,13 @@ Any change in this header will cause a rebuild of almost everything. */ +#ifndef CONFIG_GLOBAL_H +#define CONFIG_GLOBAL_H + #undef HAVE_CXX11_DELETE #undef HAVE_GCC_BUILTIN_ATOMIC #undef HAVE_SFINAE_ANONYMOUS_BROKEN #undef HAVE_THREADSAFE_STATICS #undef HAVE_SYSLOG_H + +#endif |