diff options
Diffstat (limited to 'sysdeps/sh')
-rw-r--r-- | sysdeps/sh/memcpy.S | 3 | ||||
-rw-r--r-- | sysdeps/sh/memset.S | 3 | ||||
-rw-r--r-- | sysdeps/sh/strlen.S | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/sh/memcpy.S b/sysdeps/sh/memcpy.S index 67df9696ae..b084cc93cc 100644 --- a/sysdeps/sh/memcpy.S +++ b/sysdeps/sh/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima <kkojima@rr.iij4u.or.jp> Optimized by Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com> @@ -197,3 +197,4 @@ L_exit: rts mov r3,r0 /* Return destination. */ END(memcpy) +libc_hidden_builtin_def (memcpy) diff --git a/sysdeps/sh/memset.S b/sysdeps/sh/memset.S index 12199106f2..ca23449367 100644 --- a/sysdeps/sh/memset.S +++ b/sysdeps/sh/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima <kkojima@rr.iij4u.or.jp> Optimized by Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com> @@ -85,3 +85,4 @@ L_byte_exit: rts mov r7,r0 END(memset) +libc_hidden_builtin_def (memset) diff --git a/sysdeps/sh/strlen.S b/sysdeps/sh/strlen.S index 41c53fd777..e25d7ef5ec 100644 --- a/sysdeps/sh/strlen.S +++ b/sysdeps/sh/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima <kkojima@rr.iij4u.or.jp> @@ -82,3 +82,4 @@ ENTRY(strlen) rts mov r2, r0 END(strlen) +libc_hidden_builtin_def (strlen) |