diff options
author | bje <bje> | 1998-07-10 14:23:08 +0000 |
---|---|---|
committer | bje <bje> | 1998-07-10 14:23:08 +0000 |
commit | 5a906db56a70e34cbd6d3f732287dd1ad878dec1 (patch) | |
tree | c651be5a93e31169fb28f8ba1adb11b1398be7e5 | |
parent | 70fa39fbc20072947d3d9b9772d0f50a9af6dda0 (diff) |
* exit.c: Tidy function signature.
-rw-r--r-- | exit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,7 +8,8 @@ #include "pthread.h" -void pthread_exit(void * value) +void +pthread_exit(void * value) { /* The semantics are such that additional tasks must be done for strict POSIX conformance. We must add code here later which |