xref: /plan9-contrib/sys/src/ape/lib/9/errstr.c (revision a84536681645e23c630ce4ef2e5c3b284d4c590b)
1 #include <lib9.h>
2 
3 extern	int	_ERRSTR(char*, unsigned int);
4 
5 int
6 errstr(char *err, unsigned int nerr)
7 {
8 	return _ERRSTR(err, nerr);
9 }
10