diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2011-01-10 17:09:40 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2011-01-10 17:09:40 +0100 |
commit | 9c5ade156a4266ce599d3163657d18a0f604e997 (patch) | |
tree | 9b6d2500efddf103660c993693c718e482f33b3c | |
parent | 616c49a5053830a5e0a31c71fd6114926e43235f (diff) | |
download | logdiag-9c5ade156a4266ce599d3163657d18a0f604e997.tar.gz logdiag-9c5ade156a4266ce599d3163657d18a0f604e997.tar.xz logdiag-9c5ade156a4266ce599d3163657d18a0f604e997.zip |
Make config.h.in fit between other source files.
-rw-r--r-- | config.h.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/config.h.in b/config.h.in index 1799b4c..cf460e8 100644 --- a/config.h.in +++ b/config.h.in @@ -1,11 +1,12 @@ -/** - * @file configure.h.in - * @brief Tries to fix various differences in compilers and libraries. +/* + * config.h.in + * + * Tries to fix various differences in compilers and libraries. * */ -#ifndef CONFIGURE_H_INCLUDED -#define CONFIGURE_H_INCLUDED +#ifndef __CONFIG_H__ +#define __CONFIG_H__ #define PROJECT_NAME "${PROJECT_NAME}" #define PROJECT_VERSION "${project_VERSION}" @@ -59,5 +60,5 @@ #endif #endif /* ! HAVE_STRTOK_R */ -#endif /* CONFIGURE_H_INCLUDED */ +#endif /* __CONFIG_H__ */ |