AUSAM/source/libc/errlst.c

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

char	*sys_errlist[] {
	"Error 0",
	"Not super-user",
	"No such file or directory",
	"No such process",
	"Interrupted system call",
	"I/O error",
	"No such device or address",
	"Arg list too long",
	"Exec format error",
	"Bad file number",
	"No children",
	"No more processes",
	"Not enough core",
	"Permission denied",
	"Bad buffer address",
	"Block device required",
	"Mount device busy",
	"File exists",
	"Cross-device link",
	"No such device",
	"Not a directory",
	"Is a directory",
	"Invalid argument",
	"File table overflow",
	"Too many open files",
	"Not a typewriter",
	"Text file busy",
	"File too large",
	"No space left on device",
	"Illegal seek",
	"Read-only file system",
	"Too many links",
	"Broken Pipe",
	"Too many file references",
	"TTY re-direction error",
	"TTY not capable of redirection",
	"Process limit reached",
	"Too many users",
	"No limit structure exists",
	"No limits for root",
	"Limit already exists",
	"Hard disk limit reached",
	"Device busy",
	"Directory too large",
};
int	sys_nerr { sizeof sys_errlist/sizeof sys_errlist[0] };