]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - include/common.h
initial __memx declarations
[z180-stamp.git] / include / common.h
index a92f62c129c616390a9b898dabd41bd38fc7fdd9..e8879a613c1477dceabab305aa5e1c2c3430decb 100644 (file)
@@ -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 */