Pristine Ack-5.5
[Ack-5.5.git] / modules / src / flt_arith / flt_umin.c
1 /*
2   (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3   See the copyright notice in the ACK home directory, in the file "Copyright".
4 */
5
6 /* $Id: flt_umin.c,v 1.5 1994/06/24 11:16:10 ceriel Exp $ */
7
8 #include "flt_misc.h"
9
10 void
11 flt_umin(e)
12         flt_arith *e;
13 {
14         /*      Unary minus
15         */
16         flt_status = 0;
17         e->flt_sign = ! e->flt_sign;
18 }