Exemplo n.º 1
0
uintptr
syserrstr(va_list list)
{
	char *buf;
	uint len;

	buf = va_arg(list, char*);
	len = va_arg(list, uint);
	return (uintptr)generrstr(buf, len);
}
Exemplo n.º 2
0
/* compatibility for old binaries */
long
sys_errstr(ulong *arg)
{
	return generrstr((char*)arg[0], 64);
}
Exemplo n.º 3
0
long
syserrstr(ulong *arg)
{
	return generrstr((char*)arg[0], arg[1]);
}