/* 1 2 copy sign of a number */ double nf_copysign(const Node *n, const Cell *c) { Node *r = Right(n); return copysign( eval_tree( r, c), eval_tree( r->next, c) ); }