zig/lib/libc/include/mips64-linux-gnuabi64/bits/errno.h

52 lines
1.4 KiB
C
Raw Normal View History

2019-03-08 01:16:10 +08:00
/* Error constants. MIPS/Linux specific version.
2020-03-04 11:46:57 +08:00
Copyright (C) 1996-2020 Free Software Foundation, Inc.
2019-03-05 11:15:53 +08:00
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
2019-03-08 01:16:10 +08:00
License along with the GNU C Library. If not, see
2020-03-04 11:46:57 +08:00
<https://www.gnu.org/licenses/>. */
2019-03-05 11:15:53 +08:00
#ifndef _BITS_ERRNO_H
#if !defined _ERRNO_H
# error "Never include <bits/errno.h> directly; use <errno.h> instead."
#endif
# include <linux/errno.h>
/* Older Linux headers do not define these constants. */
# ifndef ENOTSUP
# define ENOTSUP EOPNOTSUPP
# endif
# ifndef ECANCELED
2019-03-08 01:16:10 +08:00
# define ECANCELED 158
2019-03-05 11:15:53 +08:00
# endif
# ifndef EOWNERDEAD
2019-03-08 01:16:10 +08:00
# define EOWNERDEAD 165
2019-03-05 11:15:53 +08:00
# endif
2019-03-08 01:16:10 +08:00
# ifndef ENOTRECOVERABLE
# define ENOTRECOVERABLE 166
2019-03-05 11:15:53 +08:00
# endif
# ifndef ERFKILL
2019-03-08 01:16:10 +08:00
# define ERFKILL 167
2019-03-05 11:15:53 +08:00
# endif
# ifndef EHWPOISON
2019-03-08 01:16:10 +08:00
# define EHWPOISON 168
2019-03-05 11:15:53 +08:00
# endif
2019-03-08 01:16:10 +08:00
#endif /* bits/errno.h. */