1999-08-23 17:55:49 +00:00
|
|
|
/* Error constants. MIPS/Linux specific version.
|
2000-01-10 11:44:24 +00:00
|
|
|
Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
1999-08-23 17:55:49 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
1999-08-23 17:55:49 +00:00
|
|
|
|
|
|
|
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
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1999-08-23 17:55:49 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1999-08-23 17:55:49 +00:00
|
|
|
|
|
|
|
#ifdef _ERRNO_H
|
|
|
|
|
|
|
|
# undef EDOM
|
|
|
|
# undef EILSEQ
|
|
|
|
# undef ERANGE
|
|
|
|
# include <linux/errno.h>
|
|
|
|
|
|
|
|
/* Linux has no ENOTSUP error code. */
|
|
|
|
# define ENOTSUP EOPNOTSUPP
|
|
|
|
|
|
|
|
# ifndef __ASSEMBLER__
|
|
|
|
/* Function to get address of global `errno' variable. */
|
2000-01-10 11:44:24 +00:00
|
|
|
extern int *__errno_location (void) __THROW __attribute__ ((__const__));
|
1999-08-23 17:55:49 +00:00
|
|
|
|
|
|
|
# if !defined _LIBC || defined _LIBC_REENTRANT
|
|
|
|
/* When using threads, errno is a per-thread value. */
|
|
|
|
# define errno (*__errno_location ())
|
|
|
|
# endif
|
|
|
|
# endif /* !__ASSEMBLER__ */
|
|
|
|
#endif /* _ERRNO_H */
|
|
|
|
|
|
|
|
#if !defined _ERRNO_H && defined __need_Emath
|
|
|
|
/* This is ugly but the kernel header is not clean enough. We must
|
1999-08-25 17:47:08 +00:00
|
|
|
define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
|
|
|
|
defined. */
|
1999-08-23 17:55:49 +00:00
|
|
|
# define EDOM 33 /* Math argument out of domain of function. */
|
1999-08-24 22:13:41 +00:00
|
|
|
# define EILSEQ 88 /* Illegal byte sequence. */
|
1999-08-23 17:55:49 +00:00
|
|
|
# define ERANGE 34 /* Math result not representable. */
|
|
|
|
#endif /* !_ERRNO_H && __need_Emath */
|