summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-07-13 23:58:49 +0000
committerDarin Adler <darin@src.gnome.org>2001-07-13 23:58:49 +0000
commitb30cdb4abb00417c091a88279dcc9e5e02d3908e (patch)
tree710583da8dd213a581b95f592707c9b8cbb6fd3f /tests
parentde955c906500f31993c480c3f0fd020df551d8af (diff)
downloadatk-b30cdb4abb00417c091a88279dcc9e5e02d3908e.tar.gz
Add missing <string.h> include. Add missing <string.h> include
* atk/atkstate.c: Add missing <string.h> include. * tests/teststateset.c: Add missing <string.h> include
Diffstat (limited to 'tests')
-rw-r--r--tests/teststateset.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/teststateset.c b/tests/teststateset.c
index 7132d29..05718b7 100644
--- a/tests/teststateset.c
+++ b/tests/teststateset.c
@@ -19,11 +19,13 @@
#include <atk/atk.h>
-static gboolean test_state_set ();
-static gboolean test_state ();
+#include <string.h>
+
+static gboolean test_state_set (void);
+static gboolean test_state (void);
static gboolean
-test_state_set ()
+test_state_set (void)
{
AtkStateSet *state_set1, *state_set2, *state_set3;
AtkStateType state_array[3];
@@ -203,7 +205,7 @@ test_state_set ()
}
static gboolean
-test_state ()
+test_state (void)
{
AtkStateType type1, type2;
G_CONST_RETURN gchar *name;