diff options
author | Alfred Perlstein <alfred@FreeBSD.org> | 2001-03-04 22:38:48 +0000 |
---|---|---|
committer | Alfred Perlstein <alfred@FreeBSD.org> | 2001-03-04 22:38:48 +0000 |
commit | 53629b01f87e2f0eeb7d01c4b3a6f694f199fa57 (patch) | |
tree | 7dad964c76cdcdfdbb514f18ab4749c86e1afa2a /include | |
parent | c01e9af8372d15aed9cafcda6713ed7040699e0b (diff) | |
download | src-test2-53629b01f87e2f0eeb7d01c4b3a6f694f199fa57.tar.gz src-test2-53629b01f87e2f0eeb7d01c4b3a6f694f199fa57.zip |
Notes
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pthread.h b/include/pthread.h index 01b104bf9f42..ef84e8e90278 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -225,7 +225,7 @@ int pthread_create __P((pthread_t *, const pthread_attr_t *, void *(*) (void *), void *)); int pthread_detach __P((pthread_t)); int pthread_equal __P((pthread_t, pthread_t)); -void pthread_exit __P((void *)); +void pthread_exit __P((void *)) __dead2; void *pthread_getspecific __P((pthread_key_t)); int pthread_join __P((pthread_t, void **)); int pthread_key_create __P((pthread_key_t *, |