Due to different spacing, I had missed these ones in the previous
commits of this kind.
Suggested-by: Jorenar <dev@jorenar.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
.B #include <pthread.h>
.P
.BI "int pthread_key_create(pthread_key_t *" key ,
-.BI " void (*" destr_function ") (void *));"
+.BI " typeof(void (void *)) *" destr_function ;
.BI "int pthread_key_delete(pthread_key_t " key );
.BI "int pthread_setspecific(pthread_key_t " key ", const void *" pointer );
.BI "void * pthread_getspecific(pthread_key_t " key );
.P
.BI "pthread_once_t " once_control " = PTHREAD_ONCE_INIT;"
.P
-.BI "int pthread_once(pthread_once_t *" once_control ", void (*" init_routine ") (void));"
+.BI "int pthread_once(pthread_once_t *" once_control ", typeof(void (void)) *" init_routine ;
.
.
.SH DESCRIPTION