Guard atk.h with ifndef __ATK_H__ (#71405 reported by terra@diku.dk
authorPadraig O'Briain <padraigo@src.gnome.org>
Fri, 15 Feb 2002 09:51:23 +0000 (09:51 +0000)
committerPadraig O'Briain <padraigo@src.gnome.org>
Fri, 15 Feb 2002 09:51:23 +0000 (09:51 +0000)
* atk/atk.h:
Guard atk.h with ifndef __ATK_H__
(#71405 reported by terra@diku.dk (Morten Welinder))

ChangeLog
atk/atk.h

index 946e473..850057c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-02-15  Padraig O'Briain  <padraig.obriain@sun.com>
+
+       * atk/atk.h:
+       Guard atk.h with ifndef __ATK_H__
+       (#71405 reported by terra@diku.dk (Morten Welinder))
+
 2002-02-13  Padraig O'Briain  <padraig.obriain@sun.com>
 
        * atk/atkaction.h atk/atkcomponent.h atk/atkeditabletext.h
index 858072e..fb57fdc 100755 (executable)
--- a/atk/atk.h
+++ b/atk/atk.h
@@ -17,6 +17,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#ifndef __ATK_H__
+#define __ATK_H__
+
 #include <atk/atkobject.h>
 #include <atk/atkaction.h>
 #include <atk/atkcomponent.h>
@@ -38,3 +41,5 @@
 #include <atk/atktext.h>
 #include <atk/atkutil.h>
 #include <atk/atkvalue.h>
+
+#endif /* __ATK_H__ */