uKernel/include/errno.h
2018-06-25 02:23:40 +02:00

27 lines
431 B
C

/* $Id$ */
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS uKernel */
#ifndef UKERNEL_ERRNO_H
# define UKERNEL_ERRNO_H
/* constants */
# define EPERM 1
# define EBADF 9
# define ENOMEM 12
# define ENODEV 19
# define EINVAL 22
# define ERANGE 34
# define EAGAIN 35
# define ENOSYS 78
# define ENOTSUP 86
/* variables */
extern int errno;
#endif /* !UKERNEL_ERRNO_H */