1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifdef _ERRNO_H
- # undef EDOM
- # undef EILSEQ
- # undef ERANGE
- # include <linux/errno.h>
- # ifndef ENOTSUP
- # define ENOTSUP EOPNOTSUPP
- # endif
- # ifndef ECANCELED
- # define ECANCELED 125
- # endif
- # ifndef EOWNERDEAD
- # define EOWNERDEAD 130
- # define ENOTRECOVERABLE 131
- # endif
- # ifndef __ASSEMBLER__
- extern int *__errno_location (void) __THROW __attribute__ ((__const__));
- libc_hidden_proto(__errno_location)
- # ifdef __UCLIBC_HAS_THREADS__
- # define errno (*__errno_location ())
- # endif
- # endif
- #endif
- #if !defined _ERRNO_H && defined __need_Emath
- # define EDOM 33
- # define EILSEQ 84
- # define ERANGE 34
- #endif
|