1
0
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:
Marian Buschsieweke 2022-10-18 14:31:16 +02:00
parent 75c909b813
commit b0ee095051
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -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. */
/** @} */
/** @} */