shithub: npe

ref: 96089afd35646c653b1997b48cc4cf7bd5fa2e1a
dir: /include/npe/errno.h/

View raw version
#ifndef _npe_errno_h_
#define _npe_errno_h_

#include <npe.h>

enum {
	ENOENT = 2,
	EACCES = 13,
	EINVAL = 22,
	ERANGE = 34,
	ENAMETOOLONG = 36,
};

extern int errno;

#endif