From 442fec32d0bcf60806fd74dd6394d44210b427ec Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 17 Jan 2007 17:17:51 +0100 Subject: [PATCH] tests: The non-gcc case was missing a forward declaration for winetest_skip(). --- include/wine/test.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wine/test.h b/include/wine/test.h index 4f2e863425d..f4557ab3597 100644 --- a/include/wine/test.h +++ b/include/wine/test.h @@ -76,6 +76,7 @@ extern void winetest_trace( const char *msg, ... ) __attribute__((format (printf #else /* __GNUC__ */ extern int winetest_ok( int condition, const char *msg, ... ); +extern void winetest_skip( const char *msg, ... ); extern void winetest_trace( const char *msg, ... ); #endif /* __GNUC__ */