avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2267] add !__AVR_TINY__ protection


From: Joerg Wunsch
Subject: [avr-libc-commit] [2267] add !__AVR_TINY__ protection
Date: Thu, 29 Dec 2011 07:53:04 +0000

Revision: 2267
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2267
Author:   joerg_wunsch
Date:     2011-12-29 07:53:03 +0000 (Thu, 29 Dec 2011)
Log Message:
-----------
add !__AVR_TINY__ protection

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/libc/string/strlcat.S

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2011-12-28 21:29:38 UTC (rev 2266)
+++ trunk/avr-libc/ChangeLog    2011-12-29 07:53:03 UTC (rev 2267)
@@ -1,3 +1,7 @@
+2011-12-29  Joerg Wunsch <address@hidden>
+
+       * libc/string/strlcat.S: add !__AVR_TINY__ protection
+
 2011-12-28  Joerg Wunsch <address@hidden>
 
        bug #32773: stdiodemo source code is broken

Modified: trunk/avr-libc/libc/string/strlcat.S
===================================================================
--- trunk/avr-libc/libc/string/strlcat.S        2011-12-28 21:29:38 UTC (rev 
2266)
+++ trunk/avr-libc/libc/string/strlcat.S        2011-12-29 07:53:03 UTC (rev 
2267)
@@ -49,6 +49,8 @@
     \returns The strlcat() function returns strlen(src) + MIN(siz,
     strlen(initial dst)).  If retval >= siz, truncation occurred.  */
 
+#if !defined(__AVR_TINY__)
+
 #if !defined(__DOXYGEN__)
 
 #include "asmdef.h"
@@ -126,3 +128,5 @@
 
 ENDFUNC
 #endif /* not __DOXYGEN__ */
+
+#endif /* not __AVR_TINY__ */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]