zrf4.c 271 B

12345678910111213141516171819
  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. return a zero float (ZRF 4)
  8. */
  9. #include "FP_types.h"
  10. void
  11. zrf4(l)
  12. SINGLE *l;
  13. {
  14. *l = 0L;
  15. }