Welcome to mirror list, hosted at ThFree Co, Russian Federation.

crtst.c « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4835b09634b04f8d2c8b50706b0a36168f1f8904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * crtst.c
 *
 * This object file defines _CRT_MT to have a value of 0, which will
 * turn off MT support in GCC runtime. This is linked by default unless
 * you specify -mthreads when linking with gcc. 
 *
 * Mumit Khan  <khan@nanotech.wisc.edu>
 *
 */

int _CRT_MT = 0;