diff options
author | Jim Meyering <jim@meyering.net> | 1996-02-24 18:25:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-02-24 18:25:29 +0000 |
commit | 34e1cf83047b4faebfa18a403c7756fccc42f5bd (patch) | |
tree | c1270dcc5282ef751d7585094a1697aa3ee21476 | |
parent | 178d3b59d50fb1cabba42041779f450870b90866 (diff) | |
download | coreutils-34e1cf83047b4faebfa18a403c7756fccc42f5bd.tar.xz |
(cmpf): Indent macro uses so ansi2knr doesn't mistake them
for function dcls and munge them.
(arithf): Likewise.
(arithdivf): Likewise.
-rw-r--r-- | src/expr.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/expr.c b/src/expr.c index c984279bc..f31ce0082 100644 --- a/src/expr.c +++ b/src/expr.c @@ -346,12 +346,12 @@ int name (l, r) VALUE *l; VALUE *r; \ else \ return l->u.i rel r->u.i; \ } -cmpf (less_than, <) -cmpf (less_equal, <=) -cmpf (equal, ==) -cmpf (not_equal, !=) -cmpf (greater_equal, >=) -cmpf (greater_than, >) + cmpf (less_than, <) + cmpf (less_equal, <=) + cmpf (equal, ==) + cmpf (not_equal, !=) + cmpf (greater_equal, >=) + cmpf (greater_than, >) #undef cmpf @@ -376,11 +376,11 @@ int name (l, r) VALUE *l; VALUE *r; \ return l->u.i op r->u.i; \ } -arithf (plus, +) -arithf (minus, -) -arithf (multiply, *) -arithdivf (divide, /) -arithdivf (mod, %) + arithf (plus, +) + arithf (minus, -) + arithf (multiply, *) + arithdivf (divide, /) + arithdivf (mod, %) #undef arithf #undef arithdivf |