MINUS 109 bcmath/libbcmath/src/div.c qval->n_sign = (n1->n_sign == n2->n_sign ? PLUS : MINUS); MINUS 261 bcmath/libbcmath/src/div.c qval->n_sign = ( n1->n_sign == n2->n_sign ? PLUS : MINUS ); MINUS 77 bcmath/libbcmath/src/int2num.c if (neg) (*num)->n_sign = MINUS; MINUS 47 bcmath/libbcmath/src/neg.c return num->n_sign == MINUS; MINUS 101 bcmath/libbcmath/src/output.c if (num->n_sign == MINUS) (*out_char) ('-'); MINUS 297 bcmath/libbcmath/src/recmul.c pval->n_sign = ( n1->n_sign == n2->n_sign ? PLUS : MINUS ); MINUS 82 bcmath/libbcmath/src/str2num.c (*num)->n_sign = MINUS; MINUS 70 bcmath/libbcmath/src/sub.c diff->n_sign = (n2->n_sign == PLUS ? MINUS : PLUS);