Module: wine Branch: master Commit: 442fec32d0bcf60806fd74dd6394d44210b427ec URL: http://source.winehq.org/git/wine.git/?a=commit;h=442fec32d0bcf60806fd74dd63... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Wed Jan 17 17:17:51 2007 +0100 tests: The non-gcc case was missing a forward declaration for winetest_skip(). --- include/wine/test.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/wine/test.h b/include/wine/test.h index 4f2e863..f4557ab 100644 --- a/include/wine/test.h +++ b/include/wine/test.h @@ -76,6 +76,7 @@ extern void winetest_trace( const char * #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__ */