diff options
author | Carl Worth <cworth@cworth.org> | 2005-05-10 20:25:38 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-05-10 20:25:38 +0000 |
commit | b05c85eafb953fbe082b67875865ae4e4ca56ed2 (patch) | |
tree | e6997cd68fd5f9772e7a79342bbe01f568357f92 /test/cairo-test.h | |
parent | 40796148b87eea991a9c624061a978821f108de6 (diff) |
Removing mucking around with stderr and add a cairo_test_log function instead.
Switch all error messages from fprintf(stderr,...) to cairo_test_log(...).
Diffstat (limited to 'test/cairo-test.h')
-rw-r--r-- | test/cairo-test.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/cairo-test.h b/test/cairo-test.h index 84fa4a7e..fe70171c 100644 --- a/test/cairo-test.h +++ b/test/cairo-test.h @@ -58,6 +58,9 @@ cairo_pattern_t * cairo_test_create_png_pattern (cairo_t *cr, const char *filename); void +cairo_test_log (const char *fmt, ...); + +void xasprintf (char **strp, const char *fmt, ...); #endif |