diff options
Diffstat (limited to 'test/nullptr.c')
-rw-r--r-- | test/nullptr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nullptr.c b/test/nullptr.c index 8f5b436..498445a 100644 --- a/test/nullptr.c +++ b/test/nullptr.c @@ -1,4 +1,4 @@ typeof(nullptr) x = 0; -_Static_assert(sizeof x == sizeof(char *)); +static_assert(sizeof x == sizeof(char *)); int *y = nullptr; bool z = nullptr; |