BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 11f4683b13d097219efe4887820b96d54ffee02c / include / errno.h

// Related

OrionLibC

Barry Updating libc for pipes and signals ad9b6af (2 years, 2 months ago)
#ifndef _ERRNO_H
#define _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,
};

extern int errno;

#endif