diff options
Diffstat (limited to 'winsup/mingw/CRTglob.c')
-rw-r--r-- | winsup/mingw/CRTglob.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/winsup/mingw/CRTglob.c b/winsup/mingw/CRTglob.c index 09f858146..a4f5fe051 100644 --- a/winsup/mingw/CRTglob.c +++ b/winsup/mingw/CRTglob.c @@ -1,17 +1,15 @@ /* * CRTglob.c + * This file has no copyright 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 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 + * Include this object file to set _CRT_glob to a state that will + * turn on command line globbing by default. NOTE: _CRT_glob has a default + * state of on. Specify CRT_noglob.o to turn off globbing by default. * - * int _CRT_glob = 0; - * - * in one of your source modules. - * - * $Revision$ - * $Author$ - * $Date$ + * To use this object include the object file in your link command: + * gcc -o foo.exe foo.o CRTglob.o * */ |