OSDN Git Service

Correct omission of complex conjugate functions from libmingwex.a
[mingw/mingw-org-wsl.git] / mingwrt / CRT_noglob.c
1 /*
2  * CRT_noglob.c
3  * This file has no copyright is 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 turn off
8  * command line globbing by default.  NOTE: _CRT_glob has a default state of on.
9  *
10  * To use this object include the object file in your link command:
11  * gcc -o foo.exe foo.o CRT_noglob.o
12  *
13  */
14
15 int _CRT_glob = 0;