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

CRTglob.c « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09f858146d3a643f90a97bfc20031854f3d7b37a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * CRTglob.c
 *
 * This object file defines _CRT_glob to have a value of -1, which will
 * turn on command line globbing by default. If you want to turn off
 * command line globbing include a line
 *
 * int _CRT_glob = 0;
 *
 * in one of your source modules.
 *
 * $Revision$
 * $Author$
 * $Date$
 *
 */

int _CRT_glob = -1;