V9/libc/gen/abort.c

Compare this file to the similar file:
Show the results in this format:

#include <signal.h>

extern int kill(), getpid();

int
abort()
{
	return(kill(getpid(), SIGIOT));
}