Wolfgang Denk | 65cd3fa | 2010-06-12 00:19:46 +0200 | [diff] [blame] | 1 | #ifndef _ERRNO_H |
2 | |||||
3 | #include <asm-generic/errno.h> | ||||
4 | |||||
5 | extern int errno; | ||||
6 | |||||
7 | #define __set_errno(val) do { errno = val; } while (0) | ||||
8 | |||||
Przemyslaw Marczak | 59345b1 | 2014-10-08 22:48:37 +0200 | [diff] [blame] | 9 | #ifdef CONFIG_ERRNO_STR |
10 | const char *errno_str(int errno); | ||||
11 | #endif | ||||
Wolfgang Denk | 65cd3fa | 2010-06-12 00:19:46 +0200 | [diff] [blame] | 12 | #endif /* _ERRNO_H */ |