Minix1.5/lib/ansi/abort.c

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

#include <lib.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>

void abort()
{
  kill(getpid(), SIGABRT);
}