diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-03-13 19:04:16 +0000 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-03-13 19:04:16 +0000 |
commit | 3674a2c77df975bfa67905e70ce3ea94863d2152 (patch) | |
tree | 5d2faf7c28986c60a9a587ff06dca08bd8fb7933 /libc/string/avr32/bzero.S | |
parent | fec002033945a8069212a82440d8be363d260add (diff) |
From: Geoffrey Wossum <geoffrey@pager.net>
Found a problem with the AVR32 optimized bzero() code. Due to a
missing #include, it actually generated no code.
Diffstat (limited to 'libc/string/avr32/bzero.S')
-rw-r--r-- | libc/string/avr32/bzero.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/string/avr32/bzero.S b/libc/string/avr32/bzero.S index 6ced0cbb1..7404ca3e4 100644 --- a/libc/string/avr32/bzero.S +++ b/libc/string/avr32/bzero.S @@ -6,6 +6,8 @@ * archive for more details. */ +#include <features.h> + #ifdef __UCLIBC_SUSV3_LEGACY__ .text |