summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sem_unlink.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 02:11:44 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 02:11:44 +0000
commit76e3f1c91e7cc21260b08adb60c974fa6515ce52 (patch)
treecc067b62989d94feedd81d74cde596d643ff01c1 /libpthread/nptl/sem_unlink.c
parent61257ecf3c60e69e38c2d28fc23040735f2e35b1 (diff)
downloaduClibc-alpine-76e3f1c91e7cc21260b08adb60c974fa6515ce52.tar.bz2
uClibc-alpine-76e3f1c91e7cc21260b08adb60c974fa6515ce52.tar.xz
Final set of changes for NPTL and new build system. NPTL can now build with the new build system.
Diffstat (limited to 'libpthread/nptl/sem_unlink.c')
-rw-r--r--libpthread/nptl/sem_unlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl/sem_unlink.c b/libpthread/nptl/sem_unlink.c
index 17074774d..7ec6663a0 100644
--- a/libpthread/nptl/sem_unlink.c
+++ b/libpthread/nptl/sem_unlink.c
@@ -56,7 +56,7 @@ sem_unlink (name)
/* Create the name of the file. */
fname = (char *) alloca (mountpoint.dirlen + namelen + 1);
- __mempcpy (__mempcpy (fname, mountpoint.dir, mountpoint.dirlen),
+ mempcpy (mempcpy (fname, mountpoint.dir, mountpoint.dirlen),
name, namelen + 1);
/* Now try removing it. */