summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/9/errstr.c
blob: d790b85f2943ffe64abdb77a2593d1398b854772 (plain)
1
2
3
4
5
6
7
8
9
#include <lib9.h>

extern	int	_ERRSTR(char*, unsigned int);

int
errstr(char *err, unsigned int nerr)
{
	return _ERRSTR(err, nerr);
}