diff options
Diffstat (limited to 'tests/015-define-object-with-parens.c')
-rw-r--r-- | tests/015-define-object-with-parens.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/015-define-object-with-parens.c b/tests/015-define-object-with-parens.c index 10bf7e31a3..558da9c617 100644 --- a/tests/015-define-object-with-parens.c +++ b/tests/015-define-object-with-parens.c @@ -1,4 +1,4 @@ -#define foo ( ) 1 +#define foo ()1 foo() -#define bar () 2 -bar( ) +#define bar ()2 +bar() |