home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / win32 / runperl.c < prev    next >
C/C++ Source or Header  |  1999-12-28  |  364b  |  22 lines

  1. #include "EXTERN.h"
  2. #include "perl.h"
  3.  
  4. #ifdef __GNUC__
  5.  
  6. /* Mingw32 defaults to globing command line 
  7.  * This is inconsistent with other Win32 ports and 
  8.  * seems to cause trouble with passing -DXSVERSION=\"1.6\" 
  9.  * So we turn it off like this:
  10.  */
  11. int _CRT_glob = 0;
  12.  
  13. #endif
  14.  
  15. int
  16. main(int argc, char **argv, char **env)
  17. {
  18.     return RunPerl(argc, argv, env);
  19. }
  20.  
  21.  
  22.