diff options
| -rw-r--r-- | lib/ChangeLog | 4 | ||||
| -rw-r--r-- | lib/eu-config.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 0774524c..06991826 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2009-01-23 Roland McGrath <[email protected]> + + * eu-config.h: Add multiple inclusion protection. + 2009-01-17 Ulrich Drepper <[email protected]> * system.h (ARGP_PROGRAM_VERSION_HOOK_DEF): Define. diff --git a/lib/eu-config.h b/lib/eu-config.h index 03dba76a..32f501ae 100644 --- a/lib/eu-config.h +++ b/lib/eu-config.h @@ -46,6 +46,9 @@ Network licensing program, please visit www.openinventionnetwork.com <http://www.openinventionnetwork.com>. */ +#ifndef EU_CONFIG_H +#define EU_CONFIG_H 1 + #ifdef USE_LOCKS # include <pthread.h> # include <assert.h> @@ -178,3 +181,6 @@ asm (".section predict_data, \"aw\"; .previous\n" /* This macro is used by the tests conditionalize for standalone building. */ #define ELFUTILS_HEADER(name) <lib##name.h> + + +#endif /* eu-config.h */ |
