]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Add multiple inclusion protection to eu-config.h
authorRoland McGrath <roland@redhat.com>
Sat, 24 Jan 2009 01:11:04 +0000 (17:11 -0800)
committerRoland McGrath <roland@redhat.com>
Sat, 24 Jan 2009 01:11:04 +0000 (17:11 -0800)
lib/ChangeLog
lib/eu-config.h

index 0774524c50702f83d282283df4e140156dad0e4e..0699182621d13cb2571a4ae74bf1ccb95ef65a86 100644 (file)
@@ -1,3 +1,7 @@
+2009-01-23  Roland McGrath  <roland@redhat.com>
+
+       * eu-config.h: Add multiple inclusion protection.
+
 2009-01-17  Ulrich Drepper  <drepper@redhat.com>
 
        * system.h (ARGP_PROGRAM_VERSION_HOOK_DEF): Define.
index 03dba76a8975ab317585049f3ba55be691fb0639..32f501ae328500d82e0ea4db603f86a739f67180 100644 (file)
@@ -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 */