From 61b0cfe9df810db4fbca78e5f880d61c5063f324 Mon Sep 17 00:00:00 2001 From: Leo C Date: Sat, 23 Aug 2014 19:34:22 +0200 Subject: Add date rtc i2c --- include/common.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to '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 */ -- cgit v1.2.3