From: Roland McGrath Date: Sat, 24 Jan 2009 01:11:04 +0000 (-0800) Subject: Add multiple inclusion protection to eu-config.h X-Git-Tag: elfutils-0.140~25^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e74f911beecd79f051eaf9fa09b3d93144a01124;p=thirdparty%2Felfutils.git Add multiple inclusion protection to eu-config.h --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 0774524c5..069918262 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2009-01-23 Roland McGrath + + * eu-config.h: Add multiple inclusion protection. + 2009-01-17 Ulrich Drepper * system.h (ARGP_PROGRAM_VERSION_HOOK_DEF): Define. diff --git a/lib/eu-config.h b/lib/eu-config.h index 03dba76a8..32f501ae3 100644 --- a/lib/eu-config.h +++ b/lib/eu-config.h @@ -46,6 +46,9 @@ Network licensing program, please visit www.openinventionnetwork.com . */ +#ifndef EU_CONFIG_H +#define EU_CONFIG_H 1 + #ifdef USE_LOCKS # include # include @@ -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) + + +#endif /* eu-config.h */