V8/usr/src/cmd/cfront/libC/new/_handler.c

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


typedef void (*PFVV)();

extern PFVV _new_handler = 0;

extern PFVV set_new_handler(PFVV handler)
{
	PFVV rr = _new_handler;
	_new_handler = handler;
	return rr;
}