From: Ulrich Drepper Date: Sun, 14 Dec 1997 22:10:59 +0000 (+0000) Subject: (EAGAIN): Added. X-Git-Tag: glibc-2.16-ports-before-merge~3353 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c96aeaa4e39ebd25ed174c79d6b0bd874ff87b35;p=thirdparty%2Fglibc.git (EAGAIN): Added. (EIO): Likewise. (ENOSPC): Likewise. (EEXIST): Likewise. (__errno_location): Likewise. --- diff --git a/sysdeps/standalone/arm/bits/errno.h b/sysdeps/standalone/arm/bits/errno.h index 97dbbd9ce35..391f92548f3 100644 --- a/sysdeps/standalone/arm/bits/errno.h +++ b/sysdeps/standalone/arm/bits/errno.h @@ -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__));