1  /*
2  Test that the function:
3   int pthread_kill(pthread_t, int);
4  is declared.
5  */
6
7#include <signal.h>
8
9typedef int (*pthread_kill_test)(pthread_t, int);
10
11int dummyfcn (void)
12{
13	pthread_kill_test dummyvar;
14	dummyvar = pthread_kill;
15	return 0;
16}
17