27 lines
431 B
C
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 */
|