From: Jim Meyering Date: Sat, 24 Feb 1996 18:25:29 +0000 (+0000) Subject: (cmpf): Indent macro uses so ansi2knr doesn't mistake them X-Git-Tag: FILEUTILS-3_12j~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34e1cf83047b4faebfa18a403c7756fccc42f5bd;p=thirdparty%2Fcoreutils.git (cmpf): Indent macro uses so ansi2knr doesn't mistake them for function dcls and munge them. (arithf): Likewise. (arithdivf): Likewise. --- diff --git a/src/expr.c b/src/expr.c index c984279bc5..f31ce00822 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