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

  1. /*
  2.  * crtmt.c
  3.  *
  4.  * This object file defines _CRT_MT to have a value of 1, which will
  5.  * turn on MT support in GCC runtime. This is only linked in when
  6.  * you specify -mthreads when linking with gcc. The Mingw support
  7.  * library, libmingw32.a, contains the complement, crtst.o, which
  8.  * sets this variable to 0. 
  9.  *
  10.  * Mumit Khan  <khan@nanotech.wisc.edu>
  11.  *
  12.  */
  13.  
  14. int _CRT_MT = 1;
  15.