ack/modules/src/flt_arith/flt_umin.c
1991-02-19 13:53:04 +00:00

17 lines
299 B
C

/*
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
#include "flt_misc.h"
flt_umin(e)
flt_arith *e;
{
/* Unary minus
*/
flt_status = 0;
e->flt_sign = ! e->flt_sign;
}