ack/modules/src/flt_arith/flt_umin.c
1994-06-24 11:31:16 +00:00

18 lines
300 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".
*/
/* $Id$ */
#include "flt_misc.h"
void
flt_umin(e)
flt_arith *e;
{
/* Unary minus
*/
flt_status = 0;
e->flt_sign = ! e->flt_sign;
}