aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/libcxx/include/__system_error/errc.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2024-01-14 13:20:42 +0000
committerDimitry Andric <dim@FreeBSD.org>2024-04-19 21:14:12 +0000
commitc8734e140f632b76ff5e638afcde7258bd688d2f (patch)
treef3eb0e9b795189b6430779f6273756e50c161f3f /contrib/llvm-project/libcxx/include/__system_error/errc.h
parent6c20abcd5625af907434441af2abcf626ab4c18b (diff)
Diffstat (limited to 'contrib/llvm-project/libcxx/include/__system_error/errc.h')
-rw-r--r--contrib/llvm-project/libcxx/include/__system_error/errc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm-project/libcxx/include/__system_error/errc.h b/contrib/llvm-project/libcxx/include/__system_error/errc.h
index a14ec56070c4..b0cdacc5ec1d 100644
--- a/contrib/llvm-project/libcxx/include/__system_error/errc.h
+++ b/contrib/llvm-project/libcxx/include/__system_error/errc.h
@@ -45,7 +45,7 @@ enum class errc
identifier_removed, // EIDRM
illegal_byte_sequence, // EILSEQ
inappropriate_io_control_operation, // ENOTTY
- integrity_check_failed, // EINTEGRITY
+ integrity_check_failed, // EINTEGRITY // FreeBSD customization
interrupted, // EINTR
invalid_argument, // EINVAL
invalid_seek, // ESPIPE
@@ -143,7 +143,7 @@ _LIBCPP_DECLARE_STRONG_ENUM(errc){
illegal_byte_sequence = EILSEQ,
inappropriate_io_control_operation = ENOTTY,
#ifdef EINTEGRITY
- integrity_check_failed = EINTEGRITY,
+ integrity_check_failed = EINTEGRITY, // FreeBSD customization
#endif
interrupted = EINTR,
invalid_argument = EINVAL,