#if 0 #include #include int tss_create(tss_t *key, tss_dtor_t dtor) { SIGNAL_SAFE(0); return pthread_key_create(key, dtor) == 0 ? thrd_success : thrd_error; } CHECK_2(int, 0, tss_create, tss_t *, tss_dtor_t) /* STDC(201112) */ #endif