diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-04-15 17:18:18 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-04-15 17:18:18 +0200 |
commit | 8210378510b92f8ec224c6adcda3ecc77625f1a0 (patch) | |
tree | a0d863507d73dbb6b766ff8a77936ca1502d8a26 /cbits/arith.c | |
parent | a78ddeaa5d34fa8b6fa52eee42977cc46e8c36a5 (diff) |
arith: Don't use C23 features
Diffstat (limited to 'cbits/arith.c')
-rw-r--r-- | cbits/arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cbits/arith.c b/cbits/arith.c index 3659f6c..a6de4c9 100644 --- a/cbits/arith.c +++ b/cbits/arith.c @@ -65,7 +65,7 @@ struct stats_block { uint8_t buf[]; // trailing VLA }; -enum stats_binary_id : uint8_t { +enum stats_binary_id { sbi_dotprod = 1, }; |