diff options
author | Rich Felker <dalias@aerifal.cx> | 2016-10-20 17:04:37 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-10-20 17:04:37 -0400 |
commit | 2ed4e9d9279117ffa50294095e172804cd1b68e5 (patch) | |
tree | 15390dcb1833121aadfe8458563135937aaec3a4 /include/threads.h | |
parent | 4b8f94c2501e6fea3db631b73b0c91e34e2134cf (diff) | |
download | musl-2ed4e9d9279117ffa50294095e172804cd1b68e5.tar.gz musl-2ed4e9d9279117ffa50294095e172804cd1b68e5.tar.xz musl-2ed4e9d9279117ffa50294095e172804cd1b68e5.zip |
remove parameter names from public headers
inclusion of these names was unintentional and in most cases is a namespace violation. Daniel Sabogal tracked down and reported these.
Diffstat (limited to 'include/threads.h')
-rw-r--r-- | include/threads.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/threads.h b/include/threads.h index 01794826..8122b3b1 100644 --- a/include/threads.h +++ b/include/threads.h @@ -75,7 +75,7 @@ int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *_ int cnd_wait(cnd_t *, mtx_t *); int tss_create(tss_t *, tss_dtor_t); -void tss_delete(tss_t key); +void tss_delete(tss_t); int tss_set(tss_t, void *); void *tss_get(tss_t); |