diff options
author | Michael Forney <mforney@mforney.org> | 2024-03-22 00:33:31 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2024-03-22 00:33:31 -0700 |
commit | 42facb38e615b357ae0d8f50db5c50edaa75bbfd (patch) | |
tree | c516a92ac30d98111a2c65e26eb13a25e5fed80d /test/initializer-replace-local-string-wide.c | |
parent | d1d23429f5dc3d78b03b318a7d349ad71a6c97fa (diff) |
Use C23 spelling of typeof in tests
Diffstat (limited to 'test/initializer-replace-local-string-wide.c')
-rw-r--r-- | test/initializer-replace-local-string-wide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/initializer-replace-local-string-wide.c b/test/initializer-replace-local-string-wide.c index 366020f..760ee42 100644 --- a/test/initializer-replace-local-string-wide.c +++ b/test/initializer-replace-local-string-wide.c @@ -2,7 +2,7 @@ void f(void) { struct { unsigned short u[6]; unsigned U[6]; - __typeof__(L' ') L[6]; + typeof(L' ') L[6]; } x = { .u[0] = u'x', .u[4] = u'y', |