Changeset 935


Ignore:
Timestamp:
Jan 3, 2004, 7:27:13 PM (22 years ago)
Author:
bird
Message:

Don't use EMX specific getopt when the standard one will do.

Location:
trunk/src/emx/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/emxexp/emxexp.c

    • Property cvs2svn:cvs-rev changed from 1.12 to 1.13
    r934 r935  
    2424#include <stdarg.h>
    2525#include <string.h>
    26 #include <emx/getopt.h>
     26#include <getopt.h>
    2727#include <errno.h>
    2828#include <ar.h>
     
    954954  _wildcard (&argc, &argv);
    955955  opterr = 0;
    956 //optswchar = "-";
    957956  optind = 0;
    958957  while ((c = getopt (argc, argv, "no::uw")) != EOF)
  • trunk/src/emx/src/emximp/emximp.c

    • Property cvs2svn:cvs-rev changed from 1.9 to 1.10
    r934 r935  
    2626#include <string.h>
    2727#include <ctype.h>
    28 #include <emx/getopt.h>
     28#include <getopt.h>
    2929#include <process.h>
    3030#include <ar.h>
     
    12731273  opt_b = FALSE; opt_q = FALSE; opt_s = FALSE; base_len = 0; opt_o = NULL;
    12741274  opterr = 0;
    1275   optswchar = "-";
    12761275  optind = 0;
    12771276  while ((c = getopt (argc, argv, "a::b:mo:p:qsP:")) != EOF)
Note: See TracChangeset for help on using the changeset viewer.