V8/usr/src/cmd/cfront/libC/generic/generic.c

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

#include <stdio.h>

extern genericerror(int n, char* s)
{
	fprintf(stderr,"%s\n",s?s:"error in generic library function",n);
	abort(111);
	return 0;
};