diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 | 
|---|---|---|
| committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 | 
| commit | f8703c6453b64fd74354a0851f6fb05795c31956 (patch) | |
| tree | 252885111008043b1682496df58e46cbcd93d480 /libc/string/generic/mempcpy.c | |
| parent | 032a3e76d290c776e26ae6c0a68e8b19885a68aa (diff) | |
| download | uClibc-alpine-f8703c6453b64fd74354a0851f6fb05795c31956.tar.bz2 uClibc-alpine-f8703c6453b64fd74354a0851f6fb05795c31956.tar.xz  | |
Move to use attribute_hidden
Diffstat (limited to 'libc/string/generic/mempcpy.c')
| -rw-r--r-- | libc/string/generic/mempcpy.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/string/generic/mempcpy.c b/libc/string/generic/mempcpy.c index 46a2eaf92..cda156edf 100644 --- a/libc/string/generic/mempcpy.c +++ b/libc/string/generic/mempcpy.c @@ -8,11 +8,11 @@  #include <string.h>  #undef mempcpy -#undef __mempcpy -void *__mempcpy (void *dstpp, const void *srcpp, size_t len) +void attribute_hidden *__mempcpy (void *dstpp, const void *srcpp, size_t len)  {    memcpy(dstpp, srcpp, len);    return (void *)(((char *)dstpp) + len);  } -weak_alias (__mempcpy, mempcpy) + +strong_alias (__mempcpy, mempcpy)  | 
