BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / master / include / sys / errno.h

// Related

Nucleus

Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
#ifndef _SYS_ERRNO_H
#define _SYS_ERRNO_H

enum {
	ENONE,
	EPERM,
	ENOENT,
	ESRCH,
	EINVAL,
	EBADF,
	ENOEXEC,
	EMFILE,
	EFAULT,
	EISDIR,
	ENOTDIR,
	EACCES,
	ENODEV,
	EEXIST,
	ENXIO,
	ENOTBLK,
	ENOMEM,
	ECHILD,
	ENOTTY,
	ELOOP,
	ENAMETOOLONG,
	EINTR,
	ERANGE,
};

#endif