tests: The non-gcc case was missing a forward declaration for winetest_skip().

This commit is contained in:
Francois Gouget 2007-01-17 17:17:51 +01:00 committed by Alexandre Julliard
parent ec6463470d
commit 442fec32d0
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ extern void winetest_trace( const char *msg, ... ) __attribute__((format (printf
#else /* __GNUC__ */ #else /* __GNUC__ */
extern int winetest_ok( int condition, const char *msg, ... ); extern int winetest_ok( int condition, const char *msg, ... );
extern void winetest_skip( const char *msg, ... );
extern void winetest_trace( const char *msg, ... ); extern void winetest_trace( const char *msg, ... );
#endif /* __GNUC__ */ #endif /* __GNUC__ */