From: Padraig O'Briain Date: Fri, 15 Feb 2002 09:51:23 +0000 (+0000) Subject: Guard atk.h with ifndef __ATK_H__ (#71405 reported by terra@diku.dk X-Git-Tag: ATK_0_13~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=532a7888d6cfdf2c9bc940f44183f7abd1179e20;p=platform%2Fupstream%2Fatk.git Guard atk.h with ifndef __ATK_H__ (#71405 reported by terra@diku.dk * atk/atk.h: Guard atk.h with ifndef __ATK_H__ (#71405 reported by terra@diku.dk (Morten Welinder)) --- diff --git a/ChangeLog b/ChangeLog index 946e473..850057c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-02-15 Padraig O'Briain + + * atk/atk.h: + Guard atk.h with ifndef __ATK_H__ + (#71405 reported by terra@diku.dk (Morten Welinder)) + 2002-02-13 Padraig O'Briain * atk/atkaction.h atk/atkcomponent.h atk/atkeditabletext.h diff --git a/atk/atk.h b/atk/atk.h index 858072e..fb57fdc 100755 --- a/atk/atk.h +++ b/atk/atk.h @@ -17,6 +17,9 @@ * Boston, MA 02111-1307, USA. */ +#ifndef __ATK_H__ +#define __ATK_H__ + #include #include #include @@ -38,3 +41,5 @@ #include #include #include + +#endif /* __ATK_H__ */