On September 18, 2003 07:37 am, Richard Cohen wrote: > +extern void fatal_error( const char *msg, ... ) > + __attribute__ ((__format__ (__printf__, 1, 2))); > +extern void fatal_perror( const char *msg, ... ) > + __attribute__ ((__format__ (__printf__, 1, 2))); > +extern void error( const char *msg, ... ) > + __attribute__ ((__format__ (__printf__, 1, 2))); > +extern void warning( const char *msg, ... ) > + __attribute__ ((__format__ (__printf__, 1, 2)));
These are too GCC specific use something like __WINE_PRINTF_ATTR from wine/debug.h -- Dimi.