Source code of Windows XP (NT5)
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.

22 lines
654 B

  1. /***
  2. *adjustfd.c - define the compiler-helper variable _adjust_fdiv
  3. *
  4. * Copyright (c) 1994-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * The compiler generates references to this variable. It must be
  8. * defined in the local module (EXE or DLL) and is actually imported
  9. * from MSVCRT*.DLL when this module starts up.
  10. *
  11. *Revision History:
  12. * 12-12-94 SKS Initial version
  13. * 12-15-94 SKS Fix spelling of _adjust_fdiv
  14. * 04-30-01 BWT Remove _NTSDK
  15. *
  16. *******************************************************************************/
  17. #if !defined(_POSIX_) && defined(CRTDLL)
  18. int _adjust_fdiv;
  19. #endif /* !_NTSDK && CRTDLL && !_POSIX_ */