diff options
Diffstat (limited to 'winsup/mingw/CRT_noglob.c')
-rw-r--r-- | winsup/mingw/CRT_noglob.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/winsup/mingw/CRT_noglob.c b/winsup/mingw/CRT_noglob.c index 442820cd8..2e122fbd7 100644 --- a/winsup/mingw/CRT_noglob.c +++ b/winsup/mingw/CRT_noglob.c @@ -1,16 +1,14 @@ /* - * noglob.c + * CRT_noglob.c + * This file has no copyright is assigned and is placed in the Public Domain. + * This file is a part of the mingw-runtime package. + * No warranty is given; refer to the file DISCLAIMER within the package. * - * This file defines _CRT_glob to have a value of 0, which will - * turn off command line globbing. It is compiled into a separate object - * file which you can add to your link line to turn off globbing like - * this: + * Include this object file to set _CRT_glob to a state that will turn off + * command line globbing by default. NOTE: _CRT_glob has a default state of on. * - * gcc -o foo.exe foo.o noglob.o - * - * $Revision$ - * $Author$ - * $Date$ + * To use this object include the object file in your link command: + * gcc -o foo.exe foo.o CRT_noglob.o * */ |