svn commit: trunk/uClibc/libc/string/avr32

hskinnemoen at uclibc.org hskinnemoen at uclibc.org
Thu Mar 13 19:04:17 UTC 2008


Author: hskinnemoen
Date: 2008-03-13 12:04:16 -0700 (Thu, 13 Mar 2008)
New Revision: 21328

Log:
From: Geoffrey Wossum <geoffrey at pager.net>

Found a problem with the AVR32 optimized bzero() code.  Due to a
missing #include, it actually generated no code.


Modified:
   trunk/uClibc/libc/string/avr32/bzero.S


Changeset:
Modified: trunk/uClibc/libc/string/avr32/bzero.S
===================================================================
--- trunk/uClibc/libc/string/avr32/bzero.S	2008-03-13 18:41:46 UTC (rev 21327)
+++ trunk/uClibc/libc/string/avr32/bzero.S	2008-03-13 19:04:16 UTC (rev 21328)
@@ -6,6 +6,8 @@
  * archive for more details.
  */
 
+#include <features.h>
+
 #ifdef __UCLIBC_SUSV3_LEGACY__
 
        .text




More information about the uClibc-cvs mailing list