aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_glib_compat.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/test_glib_compat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_glib_compat.h b/test/test_glib_compat.h
index 1d54ec89a..2e4ab123c 100644
--- a/test/test_glib_compat.h
+++ b/test/test_glib_compat.h
@@ -28,7 +28,10 @@
#if !GLIB_CHECK_VERSION(2,16,0)
+#include <string.h>
+
#define g_assert_cmpint(n1, cmp, n2) g_assert((n1) cmp (n2))
+#define g_assert_cmpstr(a, cmp, b) g_assert(strcmp(a, b) cmp 0)
static void (*test_functions[256])(void);
static unsigned num_test_functions;