summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-02-24 18:25:29 +0000
committerJim Meyering <jim@meyering.net>1996-02-24 18:25:29 +0000
commit34e1cf83047b4faebfa18a403c7756fccc42f5bd (patch)
treec1270dcc5282ef751d7585094a1697aa3ee21476 /src/expr.c
parent178d3b59d50fb1cabba42041779f450870b90866 (diff)
downloadcoreutils-34e1cf83047b4faebfa18a403c7756fccc42f5bd.tar.xz
(cmpf): Indent macro uses so ansi2knr doesn't mistake them
for function dcls and munge them. (arithf): Likewise. (arithdivf): Likewise.
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c22
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