diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 14:27:29 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 14:27:29 +0200 |
commit | 652efae78c00b812033ea162d76cd13bd40dcab6 (patch) | |
tree | 7c139f4d2a28061607cd7e2269693df993e5d60a /backend/sm3600.h | |
parent | bfa2ae8e43fcbab696f272fffd164d0637e965c5 (diff) |
New upstream version 1.4.0upstream/1.4.0upstream
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; |