diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-09-15 09:27:16 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-09-15 09:27:16 +0200 |
commit | a00358f07e4474d0cbc8817d7b2f2d2c5cbdac0c (patch) | |
tree | 506c2deebcad7684c125e894a7eee29598ed2ecd /backend/sm3600.h | |
parent | 7a3814ff46a11da098906af8621571b1a323226e (diff) | |
parent | 0b8a357c867854848e6987edcf4433a9a6534ba7 (diff) |
Merge branch 'release/debian/1.4.0-1'HEADdebian/1.4.0-1master
Diffstat (limited to 'backend/sm3600.h')
-rw-r--r-- | backend/sm3600.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/sm3600.h b/backend/sm3600.h index 2ecbeb2..5d8a8d8 100644 --- a/backend/sm3600.h +++ b/backend/sm3600.h @@ -77,7 +77,11 @@ Start: 2.4.2001 /* ====================================================================== */ +#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 202311L typedef enum { false, true } TBool; +#else +typedef bool TBool; +#endif /* GCC < 15 */ typedef SANE_Status TState; |