summaryrefslogtreecommitdiffstats
path: root/libc/string/generic/memset.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-11-18 03:14:53 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-11-18 03:14:53 +0000
commitf87c7bd4133a2b3ad9b45c32fab33d167a348c4b (patch)
tree7259957b97704c375b3d8ab42f8da3d52665845e /libc/string/generic/memset.c
parent164a928b77f596b6617a4bbf43a2c06bc35a5602 (diff)
downloaduClibc-alpine-f87c7bd4133a2b3ad9b45c32fab33d167a348c4b.tar.bz2
uClibc-alpine-f87c7bd4133a2b3ad9b45c32fab33d167a348c4b.tar.xz
Massive merge from trunk.
Diffstat (limited to 'libc/string/generic/memset.c')
-rw-r--r--libc/string/generic/memset.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libc/string/generic/memset.c b/libc/string/generic/memset.c
index 1fedb2c39..0185ad57b 100644
--- a/libc/string/generic/memset.c
+++ b/libc/string/generic/memset.c
@@ -21,11 +21,7 @@
#undef memset
-void *
-memset (dstpp, c, len)
- void *dstpp;
- int c;
- size_t len;
+void attribute_hidden *__memset (void *dstpp, int c, size_t len)
{
long int dstp = (long int) dstpp;
@@ -88,3 +84,5 @@ memset (dstpp, c, len)
return dstpp;
}
+
+strong_alias(__memset, memset)