mirror of git://sourceware.org/git/glibc.git
(EAGAIN): Added.
(EIO): Likewise. (ENOSPC): Likewise. (EEXIST): Likewise. (__errno_location): Likewise.
This commit is contained in:
parent
3632b95d0a
commit
c96aeaa4e3
|
|
@ -52,6 +52,13 @@
|
|||
# define EISDIR 24
|
||||
# define EOPNOTSUPP 25 /* Operation not supported. */
|
||||
# define ENOTTY 26
|
||||
# define EAGAIN 27
|
||||
# define EIO 28
|
||||
# define ENOSPC 29
|
||||
# define EEXIST 30
|
||||
#endif
|
||||
|
||||
#define __set_errno(val) errno = (val)
|
||||
|
||||
/* Function to get address of global `errno' variable. */
|
||||
extern int *__errno_location __P ((void)) __attribute__ ((__const__));
|
||||
|
|
|
|||
Loading…
Reference in New Issue