aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2024-12-10 14:57:04 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-12-10 18:51:31 +0100
commit88c774182baae04358b59e769c46e6ffb1562df4 (patch)
tree636d9d7398dd76ef719d6f1e289b444df00d8a60 /linux
parentc438cc6adc172a76c71b7d6f248bfc3503c39bab (diff)
downloadgnumach-88c774182baae04358b59e769c46e6ffb1562df4.tar.gz
gnumach-88c774182baae04358b59e769c46e6ffb1562df4.tar.bz2
gnumach-88c774182baae04358b59e769c46e6ffb1562df4.zip
linux: Fix building with C23
'true' and 'false' are keywords in C23. This will equally be an issue on older standards if something pulls in stdbool.h, which make these into macros. In either of these two cases, just typedef 'boolean' from 'bool' (avoiding the enum), and rely on 'true' and 'false' being valid values of the type. Signed-off-by: Sergey Bugaev <bugaevc@gmail.com> Message-ID: <20241210115705.710555-2-bugaevc@gmail.com>
Diffstat (limited to 'linux')
-rw-r--r--linux/src/drivers/scsi/BusLogic.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/linux/src/drivers/scsi/BusLogic.h b/linux/src/drivers/scsi/BusLogic.h
index f60ee071..7b2644a6 100644
--- a/linux/src/drivers/scsi/BusLogic.h
+++ b/linux/src/drivers/scsi/BusLogic.h
@@ -311,8 +311,11 @@ BusLogic_BIOS_DiskGeometryTranslation_T;
/*
Define a Boolean data type.
*/
-
+#if defined(__bool_true_false_are_defined) || __STDC_VERSION__ > 201710L
+typedef bool boolean;
+#else
typedef enum { false, true } __attribute__ ((packed)) boolean;
+#endif
/*