AUSAM/source/libS/error.c

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

#include	"stdio.h"

_error(s)
register char *s;
{
	static reentered;

	if (reentered)
		_exit(0177);
	write(2, s, strlen(s));
	exit(0176);
}