Add some spurious veritcal whitespace to reduce diffs to OpenBSD.

This commit is contained in:
Juli Mallett 2002-05-01 21:45:22 +00:00
parent bd2bfb5846
commit 26849aba03

View File

@ -251,12 +251,14 @@ eqrel()
vr = shift();
switch (eqrelval) {
case EQL:
vl = (vl == vr);
break;
case NEQ:
vl = (vl != vr);
break;
case LEQ:
vl = (vl <= vr);
break;