Files
Arquivotheca.SunOS-4.1.4/usr.lib/libm/C/underflow.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

23 lines
444 B
C

#ifndef lint
static char sccsid[] = "@(#)underflow.c 1.1 94/10/31 SMI";
#endif
/*
* Copyright (c) 1988 by Sun Microsystems, Inc.
*/
/*
* Routines to control underflow handling. These are no-ops except on
* machines for which abrupt underflow is significantly faster.
*/
gradual_underflow_()
{ /* Default. */
standard_arithmetic();
}
abrupt_underflow_()
{ /* For Weitek-style implementations. */
nonstandard_arithmetic();
}