]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add some __libc_foo aliases for libpthread to use.
authorRoland McGrath <roland@hack.frob.com>
Thu, 8 Jan 2015 21:58:56 +0000 (13:58 -0800)
committerRoland McGrath <roland@hack.frob.com>
Thu, 8 Jan 2015 21:58:56 +0000 (13:58 -0800)
sysdeps/nacl/close.c
sysdeps/nacl/fork.c

index c90a795a1abac43791df394248f919388d3643bd..9f550f99644f039d589179cf90771dc0866effd8 100644 (file)
@@ -27,4 +27,5 @@ __close (int fd)
   return NACL_CALL (__nacl_irt_fdio.close (fd), 0);
 }
 libc_hidden_def (__close)
+strong_alias (__close, __libc_close)
 weak_alias (__close, close)
index 2502a663ba200ea38011dea12459f77f2b602390..9f06944aa70cc7055b09be8a8623bc08acdd9e7d 100644 (file)
@@ -1,2 +1,3 @@
 /* Get the stub, bypassing the "generic" NPTL code.  */
 #include <posix/fork.c>
+strong_alias (__fork, __libc_fork)