1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-10 22:24:12 +02:00

(cmpf): Indent macro uses so ansi2knr doesn't mistake them

for function dcls and munge them.
(arithf): Likewise.
(arithdivf): Likewise.
This commit is contained in:
Jim Meyering
1996-02-24 18:25:29 +00:00
parent 178d3b59d5
commit 34e1cf8304

View File

@@ -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