diff options
Diffstat (limited to 'src/lib/libc/include/thread_private.h')
-rw-r--r-- | src/lib/libc/include/thread_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/include/thread_private.h b/src/lib/libc/include/thread_private.h index 723bed5f51..8cf06a86c4 100644 --- a/src/lib/libc/include/thread_private.h +++ b/src/lib/libc/include/thread_private.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: thread_private.h,v 1.10 2001/09/04 22:17:45 fgsch Exp $ */ | 1 | /* $OpenBSD: thread_private.h,v 1.11 2002/02/16 21:27:23 millert Exp $ */ |
2 | 2 | ||
3 | #ifndef _THREAD_PRIVATE_H_ | 3 | #ifndef _THREAD_PRIVATE_H_ |
4 | #define _THREAD_PRIVATE_H_ | 4 | #define _THREAD_PRIVATE_H_ |
@@ -55,7 +55,7 @@ extern int __isthreaded; | |||
55 | 55 | ||
56 | struct _thread_private_key_struct { | 56 | struct _thread_private_key_struct { |
57 | pthread_once_t once; | 57 | pthread_once_t once; |
58 | void (*cleanfn)__P((void *)); | 58 | void (*cleanfn)(void *); |
59 | pthread_key_t key; | 59 | pthread_key_t key; |
60 | }; | 60 | }; |
61 | 61 | ||