diff options
Diffstat (limited to 'lib/libpthread/thread/thread_storage.c')
-rw-r--r-- | lib/libpthread/thread/thread_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thread_storage.c b/lib/libpthread/thread/thread_storage.c index 7dedd52f2f2..fa8357c85ec 100644 --- a/lib/libpthread/thread/thread_storage.c +++ b/lib/libpthread/thread/thread_storage.c @@ -30,7 +30,7 @@ _libc_private_storage(volkey, init, initsz, error) void * error; { void *result; - void (*cleanfn) __P((void *)); + void (*cleanfn)(void *); struct _thread_private_key_struct * key; /* Use static storage while not threaded: */ |