summaryrefslogtreecommitdiff
path: root/tsd.c
diff options
context:
space:
mode:
authorrpj <rpj>1999-04-06 17:57:46 +0000
committerrpj <rpj>1999-04-06 17:57:46 +0000
commit7477362ce77eb4c8005b68ff64eb0e2a1d675d3f (patch)
tree0ded6129e5831f4bd94754e6e245094d199372ed /tsd.c
parent451bb0670ddd5f5c0606410f2b5f51733119645d (diff)
Wed Apr 7 09:37:00 1999 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* *.c (comments): Remove individual attributions - these are documented sufficiently elsewhere. * implement.h (pthread.h): Remove extraneous include.
Diffstat (limited to 'tsd.c')
-rw-r--r--tsd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/tsd.c b/tsd.c
index 3a20d7d..0766744 100644
--- a/tsd.c
+++ b/tsd.c
@@ -26,10 +26,6 @@
#include "pthread.h"
#include "implement.h"
-/*
- * Code contributed by John E. Bossom <JEB>.
- */
-
int
pthread_key_create (pthread_key_t * key, void (*destructor) (void *))
/*
@@ -324,5 +320,3 @@ pthread_getspecific (pthread_key_t key)
return (TlsGetValue (key->key));
}
-/* </JEB> */
-