summaryrefslogtreecommitdiff
path: root/libpthread/linuxthreads.old/libc_pthread_init.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-04 20:55:48 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-04 20:55:48 +0000
commit5fa64b838878bc41ca608a2560da6874a515d372 (patch)
tree3a6f455cf0855848014256437715b5367a297986 /libpthread/linuxthreads.old/libc_pthread_init.c
parent92d3d28e87109618671b4440d2517b5c56d87fed (diff)
use internal versions of exit/memcpy
Diffstat (limited to 'libpthread/linuxthreads.old/libc_pthread_init.c')
-rw-r--r--libpthread/linuxthreads.old/libc_pthread_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/libc_pthread_init.c b/libpthread/linuxthreads.old/libc_pthread_init.c
index 67b38745d..4afb65a6f 100644
--- a/libpthread/linuxthreads.old/libc_pthread_init.c
+++ b/libpthread/linuxthreads.old/libc_pthread_init.c
@@ -34,7 +34,7 @@ __libc_pthread_init (functions)
/* We copy the content of the variable pointed to by the FUNCTIONS
parameter to one in libc.so since this means access to the array
can be done with one memory access instead of two. */
- memcpy (&__libc_pthread_functions, functions,
+ __memcpy (&__libc_pthread_functions, functions,
sizeof (__libc_pthread_functions));
#endif