X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/21a24f90c5aaaaf13f91716208b32cde163c5918..e2aab84a226d6e216bb18069b7ec2086bc536089:/include/common.h diff --git a/include/common.h b/include/common.h index a92f62c..e8879a6 100644 --- a/include/common.h +++ b/include/common.h @@ -43,19 +43,15 @@ void my_puts(const char *s) fputs(s, stdout); } -#ifdef __AVR__ static inline void my_puts_P(const char *s) { +#ifdef __AVR__ fputs_P(s, stdout); -} - #else -static inline -void my_puts_P(const char *s) -{ fputs(s, stdout); -} #endif /* __AVR__ */ +} + #endif /* COMMON_H */