zrf_ext.c 323 B

12345678910111213141516171819202122
  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. /* $Id$ */
  6. /*
  7. ZERO and return EXTEND FORMAT FLOAT
  8. */
  9. #include "FP_types.h"
  10. void
  11. zrf_ext(e)
  12. EXTEND *e;
  13. {
  14. e->m1 = 0;
  15. e->m2 = 0;
  16. e->exp = 0;
  17. e->sign = 0;
  18. }