home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / mingw / CRTglob.c < prev    next >
Encoding:
Text File  |  1999-07-30  |  368 b   |  19 lines

  1. /*
  2.  * CRTglob.c
  3.  *
  4.  * This object file defines _CRT_glob to have a value of -1, which will
  5.  * turn on command line globbing by default. If you want to turn off
  6.  * command line globbing include a line
  7.  *
  8.  * int _CRT_glob = 0;
  9.  *
  10.  * in one of your source modules.
  11.  *
  12.  * $Revision: 1.1.1.3 $
  13.  * $Author: khan $
  14.  * $Date: 1998/02/04 20:14:21 $
  15.  *
  16.  */
  17.  
  18. int _CRT_glob = -1;
  19.