(EAGAIN): Added.

(EIO): Likewise.
(ENOSPC): Likewise.
(EEXIST): Likewise.
(__errno_location): Likewise.
This commit is contained in:
Ulrich Drepper 1997-12-14 22:10:59 +00:00
parent 3632b95d0a
commit c96aeaa4e3
1 changed files with 7 additions and 0 deletions

View File

@ -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__));