mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
(__stpcpy): Add libc_hidden_def.
This commit is contained in:
@ -62,6 +62,7 @@ extern char *__strerror_r (int __errnum, char *__buf, size_t __buflen);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
libc_hidden_proto (__mempcpy)
|
libc_hidden_proto (__mempcpy)
|
||||||
|
libc_hidden_proto (__stpcpy)
|
||||||
libc_hidden_proto (__stpncpy)
|
libc_hidden_proto (__stpncpy)
|
||||||
libc_hidden_proto (__rawmemchr)
|
libc_hidden_proto (__rawmemchr)
|
||||||
libc_hidden_proto (__strcasecmp)
|
libc_hidden_proto (__strcasecmp)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2000 Free Software Foundation, Inc.
|
/* Copyright (C) 2000, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson <rth@redhat.com>.
|
Contributed by Richard Henderson <rth@redhat.com>.
|
||||||
|
|
||||||
@ -50,3 +50,4 @@ ENTRY(__stpcpy)
|
|||||||
END(__stpcpy)
|
END(__stpcpy)
|
||||||
|
|
||||||
weak_alias (__stpcpy, stpcpy)
|
weak_alias (__stpcpy, stpcpy)
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1996 Free Software Foundation, Inc.
|
/* Copyright (C) 1996, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson <rth@tamu.edu>, 1996.
|
Contributed by Richard Henderson <rth@tamu.edu>, 1996.
|
||||||
|
|
||||||
@ -52,3 +52,4 @@ ENTRY(__stpcpy)
|
|||||||
END(__stpcpy)
|
END(__stpcpy)
|
||||||
|
|
||||||
weak_alias (__stpcpy, stpcpy)
|
weak_alias (__stpcpy, stpcpy)
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1992, 1995, 1997, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -44,6 +44,9 @@ __stpcpy (dest, src)
|
|||||||
|
|
||||||
return d - 1;
|
return d - 1;
|
||||||
}
|
}
|
||||||
|
#ifdef libc_hidden_def
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
#endif
|
||||||
#ifdef weak_alias
|
#ifdef weak_alias
|
||||||
weak_alias (__stpcpy, stpcpy)
|
weak_alias (__stpcpy, stpcpy)
|
||||||
#endif
|
#endif
|
||||||
|
@ -4,3 +4,4 @@
|
|||||||
#include <sysdeps/i386/i586/strcpy.S>
|
#include <sysdeps/i386/i586/strcpy.S>
|
||||||
|
|
||||||
weak_alias (__stpcpy, stpcpy)
|
weak_alias (__stpcpy, stpcpy)
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Copy SRC to DEST returning the address of the terminating '\0' in DEST.
|
/* Copy SRC to DEST returning the address of the terminating '\0' in DEST.
|
||||||
For Intel 80x86, x>=3.
|
For Intel 80x86, x>=3.
|
||||||
Copyright (C) 1994, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1994,1995,1996,1997,2000,2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper (drepper@gnu.ai.mit.edu).
|
Contributed by Ulrich Drepper (drepper@gnu.ai.mit.edu).
|
||||||
|
|
||||||
@ -93,3 +93,4 @@ L(2):
|
|||||||
END (BP_SYM (__stpcpy))
|
END (BP_SYM (__stpcpy))
|
||||||
|
|
||||||
weak_alias (BP_SYM (__stpcpy), BP_SYM (stpcpy))
|
weak_alias (BP_SYM (__stpcpy), BP_SYM (stpcpy))
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Optimized stpcpy implementation for PowerPC.
|
/* Optimized stpcpy implementation for PowerPC.
|
||||||
Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -118,3 +118,4 @@ L(u1): stbu rALT, 1(rDEST)
|
|||||||
END (BP_SYM (__stpcpy))
|
END (BP_SYM (__stpcpy))
|
||||||
|
|
||||||
weak_alias (BP_SYM (__stpcpy), BP_SYM (stpcpy))
|
weak_alias (BP_SYM (__stpcpy), BP_SYM (stpcpy))
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Copy SRC to DEST returning the address of the terminating '\0' in DEST.
|
/* Copy SRC to DEST returning the address of the terminating '\0' in DEST.
|
||||||
For SPARC v7.
|
For SPARC v7.
|
||||||
Copyright (C) 1996, 1999 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1999, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Jakub Jelinek <jj@ultra.linux.cz>.
|
Contributed by Jakub Jelinek <jj@ultra.linux.cz>.
|
||||||
|
|
||||||
@ -161,3 +161,4 @@ ENTRY(__stpcpy)
|
|||||||
END(__stpcpy)
|
END(__stpcpy)
|
||||||
|
|
||||||
weak_alias(__stpcpy, stpcpy)
|
weak_alias(__stpcpy, stpcpy)
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Copy SRC to DEST returning the address of the terminating '\0' in DEST.
|
/* Copy SRC to DEST returning the address of the terminating '\0' in DEST.
|
||||||
For SPARC v9.
|
For SPARC v9.
|
||||||
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
|
Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Jan Vondrak <jvon4518@ss1000.ms.mff.cuni.cz> and
|
Contributed by Jan Vondrak <jvon4518@ss1000.ms.mff.cuni.cz> and
|
||||||
Jakub Jelinek <jj@ultra.linux.cz>.
|
Jakub Jelinek <jj@ultra.linux.cz>.
|
||||||
@ -271,3 +271,4 @@ ENTRY(__stpcpy)
|
|||||||
END(__stpcpy)
|
END(__stpcpy)
|
||||||
|
|
||||||
weak_alias (__stpcpy, stpcpy)
|
weak_alias (__stpcpy, stpcpy)
|
||||||
|
libc_hidden_def (__stpcpy)
|
||||||
|
Reference in New Issue
Block a user