aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/stpcpy.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-08-04 01:22:11 +0000
committerUlrich Drepper <drepper@redhat.com>2002-08-04 01:22:11 +0000
commit6111cd0e8a327ee3084c67e86b6ad050c6d83096 (patch)
treeaf4eb5edf46c989affc15ec937de7fca5b32a4fc /sysdeps/generic/stpcpy.c
parent02926a63a13b77b30772aa329b251b1485a7c84c (diff)
downloadglibc-6111cd0e8a327ee3084c67e86b6ad050c6d83096.tar
glibc-6111cd0e8a327ee3084c67e86b6ad050c6d83096.tar.gz
glibc-6111cd0e8a327ee3084c67e86b6ad050c6d83096.tar.bz2
glibc-6111cd0e8a327ee3084c67e86b6ad050c6d83096.zip
(__stpcpy): Add libc_hidden_def.
Diffstat (limited to 'sysdeps/generic/stpcpy.c')
-rw-r--r--sysdeps/generic/stpcpy.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/generic/stpcpy.c b/sysdeps/generic/stpcpy.c
index fb818105d2..92d3b4d25b 100644
--- a/sysdeps/generic/stpcpy.c
+++ b/sysdeps/generic/stpcpy.c
@@ -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.
The GNU C Library is free software; you can redistribute it and/or
@@ -44,6 +44,9 @@ __stpcpy (dest, src)
return d - 1;
}
+#ifdef libc_hidden_def
+libc_hidden_def (__stpcpy)
+#endif
#ifdef weak_alias
weak_alias (__stpcpy, stpcpy)
#endif