diff options
| author | Roland McGrath <[email protected]> | 2009-01-23 17:11:04 -0800 |
|---|---|---|
| committer | Roland McGrath <[email protected]> | 2009-01-23 17:11:04 -0800 |
| commit | e74f911beecd79f051eaf9fa09b3d93144a01124 (patch) | |
| tree | fa9e2166c0beba568814f01c9800a0772ae0d9c5 /lib | |
| parent | 78df7965cb8d93b611b3437b2343f1b9a1b5a071 (diff) | |
Add multiple inclusion protection to eu-config.h
Diffstat (limited to 'lib')
| -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 */ |
