ack/modules/src/flt_arith/flt_umin.c
1989-07-28 14:13:39 +00:00

17 lines
295 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 "misc.h"
flt_umin(e)
flt_arith *e;
{
/* Unary minus
*/
flt_status = 0;
e->flt_sign = ! e->flt_sign;
}