diff options
Diffstat (limited to 'libc/string/sparc/sparc64/memset.S')
-rw-r--r-- | libc/string/sparc/sparc64/memset.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/string/sparc/sparc64/memset.S b/libc/string/sparc/sparc64/memset.S index 284713556..79c1d74b6 100644 --- a/libc/string/sparc/sparc64/memset.S +++ b/libc/string/sparc/sparc64/memset.S @@ -20,6 +20,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include <features.h> #include <asm/asi.h> #ifndef XCC #define XCC xcc @@ -191,6 +192,7 @@ libc_hidden_def(memset) .text .align 32 +#ifdef __UCLIBC_SUSV3_LEGACY__ ENTRY(bzero) #ifndef USE_BPR srl %o1, 0, %o1 @@ -310,3 +312,4 @@ ENTRY(bzero) 0: retl mov %o5, %o0 END(bzero) +#endif |