home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / mingw / crtst.c < prev    next >
Encoding:
Text File  |  1999-08-18  |  275 b   |  13 lines

  1. /*
  2.  * crtst.c
  3.  *
  4.  * This object file defines _CRT_MT to have a value of 0, which will
  5.  * turn off MT support in GCC runtime. This is linked by default unless
  6.  * you specify -mthreads when linking with gcc. 
  7.  *
  8.  * Mumit Khan  <khan@nanotech.wisc.edu>
  9.  *
  10.  */
  11.  
  12. int _CRT_MT = 0;
  13.