blob: ca1bd2dd24b06990db09494673517d8a11065c37 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
2 * Copyright (C) 2004-2007 Atmel Corporation
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser General
5 * Public License. See the file "COPYING.LIB" in the main directory of this
6 * archive for more details.
7 */
8
9#include <features.h>
10
11#ifdef __UCLIBC_SUSV3_LEGACY__
12
13 .text
14 .global bzero
15 .type bzero, @function
16 .align 1
17bzero:
18 mov r10, r11
19 mov r11, 0
20 rjmp HIDDEN_JUMPTARGET(memset)
21
22 .size bzero, . - bzero
23
24#endif /* __UCLIBC_SUSV3_LEGACY__ */