mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cpu/avr8_common/avr_libc_extra: add missing errno codes
Three standard POSIX errno codes somehow slipped through the cracks. This adds the missing ones.
This commit is contained in:
parent
75c909b813
commit
b0ee095051
@ -148,6 +148,9 @@ extern int errno;
|
||||
#define ETXTBSY (79) /**< Text file busy. */
|
||||
#define EWOULDBLOCK (80) /**< Operation would block (may be the same value as [EAGAIN]). */
|
||||
#define EXDEV (81) /**< Cross-device link. */
|
||||
#define EHOSTDOWN (82) /**< Host is down. */
|
||||
#define EPFNOSUPPORT (83) /**< Protocol family not supported. */
|
||||
#define ETOOMANYREFS (84) /**< Too many references: cannot splice. */
|
||||
/** @} */
|
||||
|
||||
/** @} */
|
||||
|
Loading…
Reference in New Issue
Block a user