OSDN Git Service

Ensure PDF manpages are generated from local sources.
[mingw/mingw-org-wsl.git] / mingwrt / crtmt.c
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;