diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-13 12:04:05 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-13 12:07:11 -0800 |
commit | 7b800b29e048a2bb05c8d6d04442524677f2c061 (patch) | |
tree | 3798dadc00c9401883417f58db12925325870228 | |
parent | 3432fee6727308e459faae48cb45d538addab9d7 (diff) |
Add missing trailing newlines
-rw-r--r-- | tests/const-expr-div.c | 2 | ||||
-rw-r--r-- | tests/const-expr-mod.c | 2 | ||||
-rw-r--r-- | tests/const-expr-shr.c | 2 | ||||
-rw-r--r-- | tests/global-align.c | 2 | ||||
-rw-r--r-- | tests/nested-array.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/const-expr-div.c b/tests/const-expr-div.c index bac37a5..3ea302a 100644 --- a/tests/const-expr-div.c +++ b/tests/const-expr-div.c @@ -1 +1 @@ -int x = -2/-1;
\ No newline at end of file +int x = -2 / -1; diff --git a/tests/const-expr-mod.c b/tests/const-expr-mod.c index 2f12704..024c94c 100644 --- a/tests/const-expr-mod.c +++ b/tests/const-expr-mod.c @@ -1 +1 @@ -int x = -2%-1;
\ No newline at end of file +int x = -2 % -1; diff --git a/tests/const-expr-shr.c b/tests/const-expr-shr.c index 40bcb44..6a46b98 100644 --- a/tests/const-expr-shr.c +++ b/tests/const-expr-shr.c @@ -1 +1 @@ -int x = -1 >> 1;
\ No newline at end of file +int x = -1 >> 1; diff --git a/tests/global-align.c b/tests/global-align.c index c44c2d5..9d35d91 100644 --- a/tests/global-align.c +++ b/tests/global-align.c @@ -1 +1 @@ -_Alignas(8) char c;
\ No newline at end of file +_Alignas(8) char c; diff --git a/tests/nested-array.c b/tests/nested-array.c index 3c62258..0f0a121 100644 --- a/tests/nested-array.c +++ b/tests/nested-array.c @@ -1 +1 @@ -int x[2][3];
\ No newline at end of file +int x[2][3]; |