libc: Add EPIPE (not returned by anything yet)

This commit is contained in:
apio 2022-10-15 15:14:02 +02:00
parent e3e33bacbc
commit 7139b4403f

View File

@ -13,6 +13,7 @@ extern int errno;
#define EISDIR 21 // Is a directory #define EISDIR 21 // Is a directory
#define EINVAL 22 // Invalid argument #define EINVAL 22 // Invalid argument
#define EMFILE 24 // Too many open files #define EMFILE 24 // Too many open files
#define EPIPE 32 // Broken pipe. Not implemented.
#define ENOSYS 38 // Function not implemented #define ENOSYS 38 // Function not implemented
#endif #endif