compile-time format checking for sersendf_P

This commit is contained in:
Michael Moon 2010-09-16 22:08:24 +10:00
parent 82446ab787
commit 256ecdca39
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@
#include <avr/pgmspace.h>
void sersendf(char *format, ...) __attribute__ ((format (printf, 1, 2)));
void sersendf_P(PGM_P format, ...);
void sersendf_P(PGM_P format, ...) __attribute__ ((format (printf, 1, 2)));
#endif /* _SERSENDF_H */