home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / adjustfd.c < prev    next >
Text File  |  1998-06-17  |  531b  |  18 lines

  1. /***
  2. *adjustfd.c - define the compiler-helper variable _adjust_fdiv
  3. *
  4. *       Copyright (c) 1994-1997, 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. *******************************************************************************/
  12.  
  13. #if defined (CRTDLL)
  14.  
  15. int _adjust_fdiv;
  16.  
  17. #endif  /* defined (CRTDLL) */
  18.