Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
548 B

  1. /***
  2. * fp8.c - Set default FP precision
  3. *
  4. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *
  8. *Revision History:
  9. * 03-23-93 JWM created file
  10. * 06-04-99 PML For IA64, set _PC_64 bit mode as default
  11. *
  12. *******************************************************************************/
  13. #include <float.h>
  14. void _setdefaultprecision(void);
  15. /*
  16. * Routine to set default FP precision to 64 bits.
  17. */
  18. void _setdefaultprecision()
  19. {
  20. _controlfp(_PC_64, _MCW_PC);
  21. }