about summary refs log tree commit diff
path: root/sysdeps/posix
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-08-24 21:47:53 +0000
committerRoland McGrath <roland@gnu.org>2001-08-24 21:47:53 +0000
commitf0b1a6c8762a6e2ec698fa7e253399b327047e34 (patch)
treee6418b92481aa30daace0bd14e4c1156470ae8ff /sysdeps/posix
parentd7b734741d4d964af37f785230906403eca3b192 (diff)
downloadglibc-f0b1a6c8762a6e2ec698fa7e253399b327047e34.tar.gz
glibc-f0b1a6c8762a6e2ec698fa7e253399b327047e34.tar.xz
glibc-f0b1a6c8762a6e2ec698fa7e253399b327047e34.zip
* hurd/Versions (libc: GLIBC_2.2.5): New set; add _hurd_raise_signal,
	_hurdsig_interrupt_timeout, _hurdsig_fault_preemptor.

	* sysdeps/posix/shm_unlink.c (shm_unlink): __unlink -> unlink.

	* mach/Versions (libc: GLIBC_2.2.5): New set; add __mach_msg_destroy,
	__mach_reply_port.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r--sysdeps/posix/shm_unlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/shm_unlink.c b/sysdeps/posix/shm_unlink.c
index d262aef265..79f6751ebd 100644
--- a/sysdeps/posix/shm_unlink.c
+++ b/sysdeps/posix/shm_unlink.c
@@ -56,7 +56,7 @@ shm_unlink (const char *name)
 	     name, namelen + 1);
 
 
-  return __unlink (name);
+  return unlink (name);
 }
 
 #endif