Mark gecko_printf as printf-style for arg checking

This commit is contained in:
marcan 2009-01-16 08:46:36 +01:00 committed by bushing
parent ac5818b466
commit f0edf39096

View File

@ -12,7 +12,7 @@ int gecko_sendbuffer_safe(const void *buffer, u32 size);
int gecko_putchar(int c);
int gecko_getchar(void);
int gecko_puts(const char *s);
int gecko_printf( const char *fmt, ...);
int gecko_printf( const char *fmt, ...) __attribute__((format (printf, 1, 2)));
void gecko_init(void);
#endif