extern int kill(int pid, int sig);
extern int getpid(void);

int main(void)
{
	kill(getpid(), 1);

	return 5;
}