diff options
author | Michael Forney <mforney@mforney.org> | 2024-04-04 16:59:18 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2024-04-04 17:01:47 -0700 |
commit | 177b1f4ba2780db1073654b5fdd39480492dab1b (patch) | |
tree | 26db8f4fc0851a764d136e2ad33c82760b266970 /test/static-assert-concat.c | |
parent | 4929ddf5a0f3c5108991e09bcb3592d0db01b77e (diff) |
test: Use C23 keywords in test data
Apparently 8120240c1f missed some.
Diffstat (limited to 'test/static-assert-concat.c')
-rw-r--r-- | test/static-assert-concat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/static-assert-concat.c b/test/static-assert-concat.c index 7dd6f65..2290aa9 100644 --- a/test/static-assert-concat.c +++ b/test/static-assert-concat.c @@ -1 +1 @@ -_Static_assert(1, "abc" "def"); +static_assert(1, "abc" "def"); |