OSDN Git Service

Create "legacy" branch; import mingwrt-3.20 source code.
[mingw/mingw-org-wsl.git] / mingwrt / CRTglob.c
1 /*
2  * CRTglob.c
3  * This file has no copyright assigned and is placed in the Public Domain.
4  * This file is a part of the mingw-runtime package.
5  * No warranty is given; refer to the file DISCLAIMER within the package.
6  *
7  * Include this object file to set _CRT_glob to a state that will
8  * turn on command line globbing by default.  NOTE: _CRT_glob has a default
9  * state of on.  Specify CRT_noglob.o to turn off globbing by default.
10  *
11  * To use this object include the object file in your link command:
12  * gcc -o foo.exe foo.o CRTglob.o
13  *
14  */
15
16 int _CRT_glob = -1;