]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(EAGAIN): Added.
authorUlrich Drepper <drepper@redhat.com>
Sun, 14 Dec 1997 22:10:59 +0000 (22:10 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 14 Dec 1997 22:10:59 +0000 (22:10 +0000)
(EIO): Likewise.
(ENOSPC): Likewise.
(EEXIST): Likewise.
(__errno_location): Likewise.

sysdeps/standalone/arm/bits/errno.h

index 97dbbd9ce3519646e6b8278ce461c20fb5f1ff0a..391f92548f3044a6dee9c6f53fa13eb9d858f95b 100644 (file)
 # 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__));