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

  1. /*
  2.  * noglob.c
  3.  *
  4.  * This file defines _CRT_glob to have a value of 0, which will
  5.  * turn off command line globbing. It is compiled into a separate object
  6.  * file which you can add to your link line to turn off globbing like
  7.  * this:
  8.  *
  9.  * gcc -o foo.exe foo.o noglob.o
  10.  *
  11.  * $Revision: 1.1.1.3 $
  12.  * $Author: khan $
  13.  * $Date: 1998/02/04 20:14:21 $
  14.  *
  15.  */
  16.  
  17. int _CRT_glob = 0;
  18.