summaryrefslogtreecommitdiff
path: root/nptl/sem_unlink.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2012-05-26 22:16:19 +0200
committerAndreas Schwab <schwab@linux-m68k.org>2012-05-30 00:45:53 +0200
commit4d17e68350bd8f61632ec6402701be49fb271a84 (patch)
tree956044ab7054d7b8f0625318180473f139b74ca0 /nptl/sem_unlink.c
parent11ef492c80ce975220505da705edc6122563fd69 (diff)
Remove use of INTDEF/INTUSE in nptl
Diffstat (limited to 'nptl/sem_unlink.c')
-rw-r--r--nptl/sem_unlink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sem_unlink.c b/nptl/sem_unlink.c
index 3ffffdf4b7..610d82e7a6 100644
--- a/nptl/sem_unlink.c
+++ b/nptl/sem_unlink.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -32,7 +32,7 @@ sem_unlink (name)
size_t namelen;
/* Determine where the shmfs is mounted. */
- INTUSE(__pthread_once) (&__namedsem_once, __where_is_shmfs);
+ __pthread_once (&__namedsem_once, __where_is_shmfs);
/* If we don't know the mount points there is nothing we can do. Ever. */
if (mountpoint.dir == NULL)