33 lines · c
1#ifndef LLVM_LIBC_MACROS_LINUX_ERROR_NUMBER_MACROS_H2#define LLVM_LIBC_MACROS_LINUX_ERROR_NUMBER_MACROS_H3 4#ifndef ECANCELED5#define ECANCELED 1256#endif // ECANCELED7 8#ifndef EOWNERDEAD9#define EOWNERDEAD 13010#endif // EOWNERDEAD11 12#ifndef ENOTRECOVERABLE13#define ENOTRECOVERABLE 13114#endif // ENOTRECOVERABLE15 16#ifndef ERFKILL17#define ERFKILL 13218#endif // ERFKILL19 20#ifndef EHWPOISON21#define EHWPOISON 13322#endif // EHWPOISON23 24#ifndef EOPNOTSUPP25#define EOPNOTSUPP 9526#endif27 28#ifndef ENOTSUP29#define ENOTSUP EOPNOTSUPP30#endif31 32#endif // LLVM_LIBC_MACROS_LINUX_ERROR_NUMBER_MACROS_H33