Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/libc/include/llvm-libc-macros/linux/error-number-macros.h
213799 views
1
#ifndef LLVM_LIBC_MACROS_LINUX_ERROR_NUMBER_MACROS_H
2
#define LLVM_LIBC_MACROS_LINUX_ERROR_NUMBER_MACROS_H
3
4
#ifndef ECANCELED
5
#define ECANCELED 125
6
#endif // ECANCELED
7
8
#ifndef EOWNERDEAD
9
#define EOWNERDEAD 130
10
#endif // EOWNERDEAD
11
12
#ifndef ENOTRECOVERABLE
13
#define ENOTRECOVERABLE 131
14
#endif // ENOTRECOVERABLE
15
16
#ifndef ERFKILL
17
#define ERFKILL 132
18
#endif // ERFKILL
19
20
#ifndef EHWPOISON
21
#define EHWPOISON 133
22
#endif // EHWPOISON
23
24
#ifndef EOPNOTSUPP
25
#define EOPNOTSUPP 95
26
#endif
27
28
#ifndef ENOTSUP
29
#define ENOTSUP EOPNOTSUPP
30
#endif
31
32
#endif // LLVM_LIBC_MACROS_LINUX_ERROR_NUMBER_MACROS_H
33
34