OSDN Git Service

Adjust repository version following WSL-5.2.2 release.
[mingw/mingw-org-wsl.git] / mingwrt / CRTglob.c
1 /*
2  * CRTglob.c
3  *
4  * This file is a part of the mingw-runtime package; it has no copyright
5  * assigned and is placed in the Public Domain. No warranty is given; refer
6  * to the file DISCLAIMER within the package.
7  *
8  * Link with this object file to set _CRT_glob to a state that will turn
9  * on command line globbing by default, preferring the MinGW algorithm to
10  * Microsoft's, but without enabling any of its additional features, as
11  * described in include/_mingw.h.
12  *
13  * NOTE: this file is linked by default, via libmingw32.a, if _CRT_glob
14  * is not defined elsewhere in explicitly linked object files.  To turn
15  * globbing off, you may link explicitly with CRT_noglob.o, or you may
16  * define _CRT_glob with a value of zero, as a global variable in one of
17  * your own source files, (typically, the one which defines your main()
18  * function).  To enable any of the additional globbing features described
19  * in include/_mingw.h, you should define _CRT_glob yourself, initializing
20  * it to the value formed by logical OR of __CRT_GLOB_USE_MINGW__ with the
21  * additional feature descriptors you wish to enable, while to select
22  * Microsoft's globbing algorithm in preference to MinGW's, you should
23  * initialize _CRT_glob = __CRT_glob = __CRT_GLOB_USE_MSVCRT__
24  *
25  */
26 #include <_mingw.h>
27
28 int _CRT_glob = __CRT_GLOB_USE_MINGW__;
29
30 /* $RCSfile$: end of file */