Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - kcc-5/lib/abort.c
There are 9 other files named abort.c in the archive. Click here to see a list.
/*
 *	abort();	Abort process as illegally as possible
 */
void
abort(){
    for(;;)
	asm("\t0\n");	/* 0 is a good illegal instruction */
	/* We loop just in case int handler checks the address for presence
	** of an ERJMP instruction. */
}