D | unifdef.c | 746 static Linetype op_strict(int *p, int v, Linetype at, Linetype bt) { in op_strict() argument 747 if(at == LT_IF || bt == LT_IF) return (LT_IF); in op_strict() 750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt() argument 751 return op_strict(p, a < b, at, bt); in op_lt() 753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt() argument 754 return op_strict(p, a > b, at, bt); in op_gt() 756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le() argument 757 return op_strict(p, a <= b, at, bt); in op_le() 759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge() argument 760 return op_strict(p, a >= b, at, bt); in op_ge() [all …]
|